Witajcie, pierwszy wpis zacznę od czegoś bardzo prostego.
Poniższy kod listuje użytkowników dodanych do grupy „biuro” w Active Directory.
1 2 3 4 5 |
$group = "biuro" foreach ($user in $(Get-ADGroupMember $group)) { Get-ADUser $user.SamAccountName | select GivenName, Surname, SamAccountName } |
Oczywiście zamiast atrybutów GivenName, Surname, SamAccountName możemy wyświetlić inne.
Poniżej lista dostępnych:
DistinguishedName
Enabled
GivenName
Name
ObjectClass
ObjectGUID
SamAccountName
SID
Surname
UserPrincipalName
PropertyNames
AddedProperties
RemovedProperties
ModifiedProperties
PropertyCount
Linki z technetu:
Get-ADUser https://technet.microsoft.com/en-us/library/ee617241.aspx
Get-ADGroupMember https://technet.microsoft.com/pl-pl/library/ee617193.aspx