Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Hands on with Windows Server 2008 r2: Admin tools
Here are some common commands:
To load the AD DS module, use
Add-Module ActiveDirectory
, thenGet-Module
To get information about a ___domain, use
Get-ADDomain domain_name
To display information about ___domain controllers in a specific ___domain, use
Get-ADDomainController -Discover
To browse a specific ___domain, with results neatly formed in a table, "change directory" into AD via
Cd AD:
and then use the following series of commands:
PWD
DIR | Format-Table -Auto
CD "DC=domain_name,DC=TLD"
DIR | ft –a
- …