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 >
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 >
.jpg)