top of page

PowerShell - Get Per OU GPO Details

  • Writer: Jon Boyette
    Jon Boyette
  • Jan 10, 2022
  • 1 min read

Save as the .ps1 you want to name it, run and it prompts for the domain OU, Example would be "OU=Servers,DC=Domain,DC=COM", This is same as the bulk GPO discover, you just can pinpoint a particular OU with this one


$a = Read-Host "Enter Domain OU Name to Discover GPO's applied"

Get-ADOrganizationalUnit -filter {name -like $a} -Properties name,distinguishedName,gpLink,gPOptions |Select-Object -Property *,@{

label = 'FriendlyGPODisplayName'

expression = {$_.LinkedGroupPolicyObjects | ForEach-Object {([adsi]"LDAP://$_").displayName -join ''}

}

}



 
 
 

Recent Posts

See All
PowerShell - List All Domain SPNs

Save as same List_ALL_SPNs.ps1 or similar, this LDap calls the Domain for all Service Principal names and accounts related #Build LDAP...

 
 
 
PowerShell - Start-Monitoring

This is a great script used to Monitor and Email if a server is up or down, once ran, and smtp and from address is set, then run:...

 
 
 

Comments


Post: Blog2 Post
  • Facebook
  • Twitter
  • LinkedIn

©2022 by Boyette Technical Services. Proudly created with Wix.com

bottom of page