Summary: Learn how to use Windows PowerShell to find GPOs without a description.
Image may be NSFW.
Clik here to view. How can I use Windows PowerShell to assist in detecting GPOs that do not have a description?
Image may be NSFW.
Clik here to view. Use the Get-GPO cmdlet with the –all switch. Pipe the results to the Where-Object and look for an absence of the description property, as shown here.
14:38 C:\> Get-GPO -all | where {-not $_.description} | select displayname, description
DisplayName Description
----------- -----------
wsus
Default Domain Policy
Default Domain Controllers Policy
Enable WMI Relibility
EnablePSRemoting
BackupOnLogOff
Image may be NSFW.
Clik here to view.
Clik here to view.
