diff --git a/Private/Get-XMLGPO.ps1 b/Private/Get-XMLGPO.ps1 index 5f51db0..8bd98e4 100644 --- a/Private/Get-XMLGPO.ps1 +++ b/Private/Get-XMLGPO.ps1 @@ -290,6 +290,7 @@ 'Problem' = $Problem 'ApplyPermission' = $null 'Exclude' = $Exclude + 'Description' = $GPO.Description 'ComputerPolicies' = $XMLContent.GPO.Computer.ExtensionData.Name -join ", " 'UserPolicies' = $XMLContent.GPO.User.ExtensionData.Name -join ", " 'LinksCount' = $LinksTotalCount @@ -315,7 +316,6 @@ 'UserSettingsVersionIdentical' = if ($XMLContent.GPO.User.VersionDirectory -eq $XMLContent.GPO.User.VersionSysvol) { $true } else { $false } 'UserSettings' = $XMLContent.GPO.User.ExtensionData.Extension 'NoSettings' = $NoSettings - 'Description' = $GPO.Description 'CreationTime' = [DateTime] $XMLContent.GPO.CreatedTime 'ModificationTime' = [DateTime] $XMLContent.GPO.ModifiedTime 'ReadTime' = [DateTime] $XMLContent.GPO.ReadTime diff --git a/README.md b/README.md index 1a896ed..d23da8f 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,10 @@ To understand the usage I've created blog post you may find useful ## Changelog +- 0.0.127 - 2021.04.15 + - ☑ Improved `Invoke-GPOZaurr` + - ☑ Report `GPOList` - moved description closer to statuses + - ☑ Improved `Get-GPOZaurr` - moved description closer to statuses - 0.0.126 - 2021.04.12 - ☑ Improved `Invoke-GPOZaurr` - ☑ Report `GPOBlockedInheritance` - hidden DistinguishedName, fixed some small typos