Examples: To find all users in a given OU whose names start with "jon" and display their descriptions, type: dsquery user ou=Test,dc=microsoft,dc=com -name jon* | dsget user -desc To display the list of groups, recursively expanded, to which a given user "Jon Smith" belongs, type: dsget user "cn=Jon Smith,cn=users,dc=microsoft,dc=com" -memberof -expand To display the effective quota and quota used for a given user "Jon Smith" on a given partition "cn=domain,dc=microsoft,dc=com", type: dsget user "cn=Jon Smith,cn=users,dc=microsoft,dc=com" -part "cn=domain,dc=microsoft,dc=com" -qlimit -qused See also: dsget - describes parameters that apply to all commands. dsget computer - displays properties of computers in the directory. dsget contact - displays properties of contacts in the directory. dsget subnet - displays properties of subnets in the directory. dsget group - displays properties of groups in the directory. dsget ou - displays properties of ou's in the directory. dsget server - displays properties of servers in the directory. dsget site - displays properties of sites in the directory. dsget user - displays properties of users in the directory. dsget quota - displays properties of quotas in the directory. dsget partition - displays properties of partitions in the directory. Directory Service command-line tools help: dsadd /? - help for adding objects. dsget /? - help for displaying objects. dsmod /? - help for modifying objects. dsmove /? - help for moving objects. dsquery /? - help for finding objects matching search criteria. dsrm /? - help for deleting objects.
Examples: To find all OUs in the current domain whose name starts with "ms" and whose description starts with "sales", and ...
Examples: To find all sites in North America with name starting with "north" and display their DNs: dsquery site -name north* ...
Examples: To find all subnets with the network IP address starting with 123.12: dsquery subnet -name 123.12.* To find all ...
Examples: To find all users in a given organizational unit (OU) whose name starts with "jon" and whose account has been disabled ...
Examples: To find all users in a given OU whose names start with "jon" and display their descriptions, type: dsquery user ...
Examples: To find all users in the current domain only whose SAM account name begins with the string "jon" and display their ...
Examples: To find all users in the organizational unit (OU) "ou=Marketing,dc=microsoft,dc=com" and add them to the Marketing ...
Examples: To find all users with names starting with "John" and display their office numbers: dsquery user -name John* | ...
Examples: To modify the descriptions for the subnet "123.56.15.0/24": dsget subnet "123.56.15.0/24" -desc "test lab" See ...