diff --git a/README.md b/README.md index 591594c..bb0436d 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ To understand the usage I've created blog post you may find useful ## Changelog -- 0.0.130 +- 0.0.130 - 2021.08.13 - 💡 Updated HTML to new version of `PSWriteHTML` that fixes complains about `SearchBuilder` option - ☑ Improved `Invoke-GPOZaurr` - type `GPOOrganizationalUnit` with exclusions @@ -109,6 +109,29 @@ To understand the usage I've created blog post you may find useful $T | Format-Table * ``` + - ☑ Improved `Get-GPOZaurr` with exclusions and support for GUID, strings + + ```powershell + $GPOS = Get-GPOZaurr -ExcludeGroupPolicies { + Skip-GroupPolicy -Name 'de14_usr_std' + Skip-GroupPolicy -Name 'de14_usr_std' -DomaiName 'ad.evotec.xyz' + Skip-GroupPolicy -Name 'All | Trusted Websites' #-DomaiName 'ad.evotec.xyz' + '{D39BF08A-87BF-4662-BFA0-E56240EBD5A2}' + 'COMPUTERS | Enable Sets' + } + $GPOS | Format-Table -AutoSize * + ``` + + - ☑ Improved `Invoke-GPOZaurr` with exclusions and support for GUID, strings + + ```powershell + Invoke-GPOZaurr -Type GPOList -Exclusions { + Skip-GroupPolicy -Name 'All | Trusted Websites' -DomaiName 'ad.evotec.xyz' + '{D39BF08A-87BF-4662-BFA0-E56240EBD5A2}' + 'COMPUTERS | Enable Sets' + } + ``` + - 0.0.129 - 2021.08.06 - Added `Get-GPOZaurrOrganizationalUnit` and added `GPOOrganizationalUnit` in `Invoke-GPOZaurr` (preview) - Added `Remove-GPOZaurrLinkEmptyOU` which allows removing links from Empty OUs (preview)