Microsoft command line tools for Active Directory

Microsoft command line tools for Active Directory

How to Manage Users
Creating a New User Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsadd user userdn -samid sam_name
The following values are used in this command: • userdn specifies the distinguished name (also known as the DN) of the user object that you want to add.
• sam_name specifies the security account manager (SAM) name used as the unique SAM account name for this user (for example, Linda).

4. To specify the user account password, type the following command, where password is the password that is to be used for the user account:
dsadd user userdn -pwd password
NOTE: To view the complete syntax for this command, and to obtain more information about entering more user account information, at a command prompt, type dsadd user /?.


Resetting a User Password
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod user user_dn -pwd new_password
This command uses the following values: • user_dn specifies the distinguished name of the user for which the password will be reset.
• new_password specifies the password that will replace the current user password

4. If you want to require the user to change this password at the next logon process, type the following command:
dsmod user user_dn -mustchpwd {yes|no}
NOTE: If a password is not assigned, the first time the user tries to log on (by using a blank password), the following logon message is displayed:
You are required to change your password at first logon
After the user has changed the password, the logon process continues.

You must reset the services that are authenticated with a user account if the password for the service’s user account is changed.

NOTE: To view the complete syntax for this command, and to obtain more information about entering more user account information, at a command prompt, type dsmod user /?.


Disabling or Enabling a User Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod user user_dn -disabled {yes|no}
This command uses the following values: • user_dn specifies the distinguished name of the user object to be disabled or enabled.
• {yes|no}specifies whether the user account is disabled for log on (yes) or not (no).

NOTE: As a security measure, instead of deleting that user’s account, you can disable user accounts to prevent a particular user from logging on. If you disable user accounts that have common group memberships, you can use disabled user accounts as account templates to simplify user account creation.


Deleting a User Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command, where user_dn specifies the distinguished name of the user object to be deleted:
dsrm user_dn
After you delete a user account, all of the permissions and memberships that are associated with that user account are permanently deleted. Because the security identifier (SID) for each account is unique, if you create a new user account that has the same name as a previously deleted user account, the new account does not automatically assume the permissions and memberships of the previously deleted account. To duplicate a deleted user account, you must manually re-create all permissions and memberships.

NOTE: To view the complete syntax for this command, and to obtain more information about entering more user account information, at a command prompt, type dsrm /?.


Back to the top

How to Manage Groups
Creating a New Group
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsadd group group_dn -samid sam_name -secgrp yes | no -scope l | g | u
This command uses the following values: • group_dn specifies the distinguished name of the group object that you want to add.
• sam_name specifies the SAM name that is the unique SAM account name for this group (for example, operators).
• yes | no specifies whether the group you want to add is a security group (yes) or a distribution group (no).
• l | g | u specifies the scope of the group you want to add ( domain local [l], global [g], or universal [u]).

If the domain in which you are creating the group is set to the domain functional level of Windows 2000 mixed, you can select only security groups with domain local scopes or global scopes.

To view the complete syntax for this command, and to obtain more information about entering more group information, at a command prompt, type dsadd group /?.


Adding a Member to a Group
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod group group_dn -addmbr member_dn
This command uses the following values: • group_dn specifies the distinguished name of the group object that you want to add.
• member_dn specifies the distinguished name of the object that you want to add to the group.

In addition to users and computers, a group can contain contacts and other groups.

To view the complete syntax for this command, and to obtain more information about entering more user account and group information, at a command prompt, type dsmod group /?.


Converting a Group to Another Group Type
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod group group_dn -secgrp {yes|no}
This command uses the following values: • group_dn specifies the distinguished name of the group object for which you want to change the group type.
• {yes|no} specifies that the group type is set to security group (yes) or distribution group (no).

To convert a group, the domain functionality must be set to Windows 2000 Native or higher. You cannot convert groups when the domain functionality is set to Windows 2000 Mixed.

To view the complete syntax for this command, at a command prompt, type dsmod group /?.


Changing Group Scope
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod group group_dn -scope l|g|u
This command uses the following values: • group_dn specifies the distinguished names of the group object to which the scope will be changed.
• l|g|u specifies the scope that the group is to be set to (local, global or universal). If the domain is still set to Windows 2000 mixed, the universal scope is not supported. Also, it is not possible to convert a domain local group to global group or vice versa.
NOTE: You can only change group scopes when the domain functional level is set to Windows 2000 native or higher.

Deleting a Group
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsrm group_dn
This command uses the following value: • group_dn specifies the distinguished name of the group object to be deleted.

NOTE: If you delete the group, the group is permanently removed.

By default, local groups that are provided automatically in domain controllers that are running Windows Server 2003, such as Administrators and Account Operators, are located in the Builtin folder. By default, common global groups, such as Domain Admins and Domain Users, are located in the Users folder. You can add or move new groups to any folder. Microsoft recommends that you keep groups in an organizational unit folder.

To view the complete syntax for this command, at a command prompt, type dsrm /?.


Finding Groups in Which a User Is a Member
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsget user user_dn -memberof
This command uses the following value: • user_dn specifies the distinguished name of the user object for which you want to display group membership.

To view the complete syntax for this command, at a command prompt, type dsget user /?.


Back to the top

How to Manage Computers
Creating a New Computer Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsadd computer computer_dn
This command uses the following value: • computer_dn specifies the distinguished name of the computer you want to add. The distinguished name indicates the folder location.

To view the complete syntax for this command, at a command prompt, type dsadd computer /?.

To modify the properties of a computer account, use the dsmod computer command.


Adding a Computer Account to a Group
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod group group_dn -addmbr computer_dn
This command uses the following values: • group_dn specifies the distinguished name of the group object to which you want to add the computer object.
• computer_dn specifies the distinguished name of the computer object to be added to the group. The distinguished name indicates the folder location.

When you add a computer to a group, you can assign permissions to all of the computer accounts in that group, and then filter Group Policy settings on all accounts in that group.

To view the complete syntax for this command, at a command prompt, type dsmod group /?.


Resetting a Computer Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod computer computer_dn -reset
This command uses the following value: • computer_dn specifies the distinguished names of one or more computer objects that you want to reset.

NOTE: When you reset a computer account, you break the computer’s connection to the domain. You must rejoin computer account to the domain computer account after you reset it.

To view the complete syntax for this command, at a command prompt, type dsmod computer /?.


Disabling or Enabling a Computer Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsmod computer computer_dn -disabled {yes|no}
This command uses the following values: • computer_dn specifies the distinguished name of the computer object that you want to disable or enable.
• {yes|no} specifies whether the computer is disabled for log on (yes) or not (no).

When you disable a computer account, you break the computer’s connection with the domain and the computer cannot authenticate to the domain.

To view the complete syntax for this command, at a command prompt, type dsmod computer /?.


Back to the top

How to Manage Organizational Units
Creating a New Organizational Unit
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsadd ou organizational_unit_dn
This command uses the following value: • organizational_unit_dn specifies the distinguished name of the organizational unit to be added.

To view the complete syntax for this command, at a command prompt, type dsadd ou /?.

NOTE: To modify the properties of an organizational unit, use the dsmod ou command.


Deleting an Organizational Unit
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsrm organizational_unit_dn
This command uses the following value: • organizational_unit_dn specifies the distinguished name of the organizational unit to be deleted.
To view the complete syntax for this command, at a command prompt, type dsrm /?.

NOTE: If you delete an organizational unit, all of the objects that it contains are deleted.

Back to the top

How to Search Active Directory
Finding a User Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery user parameter
This command uses the following value: • parameter specifies the parameter to use. For the list of parameters, see the online help for the dsquery user command.

To view the complete syntax for this command, at a command prompt, type dsquery user /?.


Finding a Contact
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery contact parameter
This command uses the following values: • parameter specifies the parameter to use. For the list of parameters, see the online help for the dsquery user command.


Finding a Group
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery group parameter
This command uses the following values: • parameter specifies the parameter to use. For the list of parameters, see the online help for the dsquery user command.

By default, local groups that are provided automatically in domain controllers that are running Windows Server 2003, such as Administrators and Account Operators, are located in the Builtin folder. By default, common global groups, such as Domain Admins and Domain Users, are located in the Users folder. You can add or move new groups to any folder. Microsoft recommends that you keep groups in an organizational unit folder.


Finding a Computer Account
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery computer -name name
This command uses the following value: • name specifies the computer name that the command searches for. This command searches for computers whose name attributes (value of CN attribute) matches name.

To view the complete syntax for this command, at a command prompt, type dsquery computer /?.


Finding an Organizational Unit
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery ou parameter
This command uses the following value: • parameter specifies the parameter to use. For the list of parameters, see the online help for dsquery ou.

To view the complete syntax for this command, at a command prompt, type dsquery ou /?.


Finding a Domain Controller
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery server parameter
This command uses the following values: • parameter specifies the parameter to use. There are several attributes of a server that you can search by using this command. For the list of parameters, see online help for dsquery server.


Performing a Custom Search
1. Click Start, and then click Run.
2. In the Open box, type cmd.
3. At the command prompt, type the following command:
dsquery * parameter
This command uses the following value: • parameter specifies the parameter to use. There are several attributes that you can search by using this command. For more information about LDAP searches, see the Windows Server 2003 Resource Kit.

 

    Can't find the KB

    Unable to find the KB to address your issue ?  

      • Recent Articles

      • Lenovo Unified Workspace End-of-Life Questions and Answers

        Will the shutdown of LUW servers and access to downloads affect my server licensing? No, the shutdown of the customer servers and access to the product and licensing downloads will not affect your server licensing. This license is downloaded and ...
      • How do I determine my Unified Workspace license expiration date?

        The best method for determining the licensing information including the expiration date of your Unified Workspace license: Login to your 8090 management console on each server This may take remoting into each LUW server and relay, opening a browser, ...
      • Lenovo Unified Workspace 7.0.2.13 Released

        Highlights of Unified Workspace 7.0.2.13 Before you install: Please view the installation notes here. 7.0.2.13 requires a 7.0 license file. Below is a list of enhancements and fixes released in Unified Workspace 7.0.2.13 Fixed external storage ...
      • LanSchool Documentation Guides

        LanSchool Classic Teacher Console The LanSchool Teacher Console is the interface teachers will use to manage their classroom and students. It contains all the tools necessary for a teacher to effectively interact with students and create a ...
      • Lenovo Unified Workspace 7.0.1.41 Released

        Highlights of Unified Workspace 7.0.1.41 Before you install: Please view the installation notes here. 7.0.1.41 requires a 7.0 license file. Below is a list of enhancements and fixes for Unified Workspace 7.0.1.41 Updated Log4j Updated Java Updated ...
      • Related Articles

      • List of MSC Tools

        Most admin tools in Windows Server 2003 are MMC consoles you can access from the Start menu. But you can also open these console from the command line if you know their .msc filenames. This can be especially useful if you log on to your admin ...
      • Verify Active Directory SSL

        How can I check if my Microsoft Active Directory Domain controller / LDAP Server has SSL ?   The following URL has a nice write up about the Microsoft Tool called LDP.exe http://www.computerperformance.co.uk/w2k3/utilities/ldp.htm You can download ...
      • User password expiration / lockouts in Microsoft Active Directory

        How can I show accounts that are locked out in AD ? http://technet.microsoft.com/en-us/library/cc738772(WS.10).aspx Can I dump password expiration for users in AD ? AdFind.exe to dump the password expiration. Stoneware download / Utilities has this ...
      • How do I backup Microsoft Active Directory ?

        While backing up AD is not a function of Stoneware, here are some urls that have some good information. Simple script to start a backup: ntbackup backup systemstate /J "AD Backup" /F "C:\\ADbackup.bkf" Best Practices for Active Directory Schema ...
      • Testing Microsoft Active Directory DNS

        Stoneware has put together a few internal tools for doing some tests. From the directory configuration tab in the 8090 console click the Advanced check box to show the Run Environment Check. Using swTestTools ...