Using accounts

אלעזר ארביב 81 Reputation points
2021-01-14T09:57:09.313+00:00

Do you know how to use these users?
Is it possible to cancel them? Change them there?

SearchResults
LyncEnterprise-ApplicationAccount
SharePointEnterprise-ApplicationAccount

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,456 questions
{count} votes

3 answers

Sort by: Most helpful
  1. Vicky Wang 2,731 Reputation points
    2021-01-15T09:08:03.857+00:00

    Hi,

    Thank you for posting in our forum. The posts you post seem to be attributes, not users. You can be more specific, and we can provide you with useful help
    Hope this information can help you
    Best wishes
    Vicky

    0 comments No comments

  2. אלעזר ארביב 81 Reputation points
    2021-01-18T06:59:02.06+00:00

    I want to rename or delete them, and move them to another OU

    0 comments No comments

  3. Vicky Wang 2,731 Reputation points
    2021-01-19T09:27:26.073+00:00

    Using a graphical user interface
    Open the Active Directory Users and Computers snap-in.

    If you need to change domains, right-click on “Active Directory Users and Computers” in the left pane, select Connect to Domain, enter the domain name, and click OK.

    In the left pane, browse to the OU you want to move.

    Right-click on the OU and select Move.

    Select the new parent container for the OU and click OK.

    Using a command-line interface

    dsmove "<OrgUnitDN>" -newparent "<NewParentDN>"

    Using VBScript
    set objOU = GetObject("LDAP://<NewParentDN>")
    objOU.MoveHere "LDAP://<OrgUnitDN>", "<OrgUnitRDN>"
    Discussion
    One of the benefits of Active Directory is the ability to structure and restructure data easily. Moving an OU, even one that contains a complex hierarchy of other OUs and objects, can be done without impacting the child objects.

    If any applications have a dependency on the location of specific objects, you need to ensure they are either updated with the new location or preferably, reference the objects by GUID, not by distinguished name.

    You should also be mindful of the impact of inherited ACLs and applied group policy on the new parent OU.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.