使用者

檢索 Active Directory 使用者

Get-ADUser -Identity JohnSmith

檢索與使用者關聯的所有屬性

Get-ADUser -Identity JohnSmith -Properties *

檢索使用者的選定屬性

Get-ADUser -Identity JohnSmith -Properties * | Select-Object -Property sAMAccountName, Name, Mail

新 AD 使用者

New-ADUser -Name "MarySmith" -GivenName "Mary" -Surname "Smith" -DisplayName "MarySmith" -Path "CN=Users,DC=Domain,DC=Local"