Skip to main content

Script Center

Script Center
We are dedicated to the system administration scripters of the world. At the Microsoft Script Center, we focus on teaching people how to use Windows PowerShell and VBScript to reduce time spent performing mundane tasks.

Hey, Scripting Guy! Blog

Script Center Home Page

PowerTip: Use PowerShell to Find GPOs Without a Description
Summary: Learn how to use Windows PowerShell to find GPOs without a description. How can I use Windows PowerShell to assist in detecting GPOs that do not have a description? 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 ... More >

Recent Posts

Â