From b2db6d56629d95f36b54f234df66091edbf3e56c Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Tue, 10 Aug 2021 20:56:01 +0200 Subject: [PATCH] Update changelog --- README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a9fe1b8..2104b99 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,61 @@ To understand the usage I've created blog post you may find useful ## Changelog -- 0.0.129 +- 0.0.130 - 2021.08.10 + - ☑ Improved `Invoke-GPOZaurr` - type `GPOOrganizationalUnit` with exclusions + +```powershell +Invoke-GPOZaurr -Type GPOOrganizationalUnit -Online -FilePath $PSScriptRoot\Reports\GPOZaurrOU.html -Exclusions @( + '*OU=Production,DC=ad,DC=evotec,DC=pl' + '*OU=Production,DC=ad,DC=evotec,DC=pl' + '*DC=ad,DC=evotec,DC=pl' +) +``` + +- ☑ Improved `Get-GPOZaurrOrganizationalUnit` with exclusions + +```powershell +Get-GPOZaurrOrganizationalUnit -Verbose -ExcludeOrganizationalUnit @( + '*,OU=Production,DC=ad,DC=evotec,DC=pl' +) | Format-Table +``` + +- ☑ Improved `Remove-GPOZaurrLinkEmptyOU` with exclusions + +```powershell + +$Exclude = @( + "OU=Groups,OU=Production,DC=ad,DC=evotec,DC=pl" + "OU=Test \, OU,OU=ITR02,DC=ad,DC=evotec,DC=xyz" +) + +Remove-GPOZaurrLinkEmptyOU -Verbose -LimitProcessing 3 -WhatIf -ExcludeOrganizationalUnit $Exclude +``` + +- ☑ Improved `Invoke-GPOZaurr` - type `GPOOwners` with exclusions + +```powershell +Invoke-GPOZaurr -FilePath $PSScriptRoot\Reports\GPOZaurrGPOOwners.html -Type GPOOwners -Online -Exclusions @( + 'EVOTEC\przemyslaw.klys' +) +``` + +- ☑ Improved `Set-GPOZaurrOwner` with exclusions/approved owners + +```powershell +Set-GPOZaurrOwner -Type All -Verbose -LimitProcessing 2 -WhatIf -IncludeDomains 'ad.evotec.xyz' -ApprovedOwner @( + 'EVOTEC\przemyslaw.klys' +) +``` + +- ☑ Improved `Get-GPOZaurrOwner` with exclusions/approved owners + +```powershell +$T = Get-GPOZaurrOwner -Verbose -IncludeSysvol -ApprovedOwner @('EVOTEC\przemyslaw.klys') +$T | Format-Table * +``` + +- 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) - Small update to parameter sets for `Set-GPOZaurrOwner`