Skip to content

Instantly share code, notes, and snippets.

@mczerniawski
Last active September 11, 2017 15:34
Show Gist options
  • Select an option

  • Save mczerniawski/448add24a5a675e4e19902d86cecea9f to your computer and use it in GitHub Desktop.

Select an option

Save mczerniawski/448add24a5a675e4e19902d86cecea9f to your computer and use it in GitHub Desktop.
Check OU permissions
$OUsServers = @('OU=TestBedSecurity,OU=Servers,DC=contoso,DC=com')
$OUsWorkstations =@('OU=TestBedSecurity,OU=Workstations,DC=contoso,DC=com')
$OUsServers | ForEach-Object {
Find-AdmPwdExtendedRights -identity $_ | fl
}
$OUsWorkstations | ForEach-Object {
Find-AdmPwdExtendedRights -identity $_ | fl
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment