From 3b4617af83d37c36331266cb8e6e85eb31f2ec3e Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Sun, 4 Feb 2024 11:33:22 +0100 Subject: [PATCH] Small fix typo --- Public/Export-GPOZaurrContent.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Public/Export-GPOZaurrContent.ps1 b/Public/Export-GPOZaurrContent.ps1 index 816eaec..dad37b9 100644 --- a/Public/Export-GPOZaurrContent.ps1 +++ b/Public/Export-GPOZaurrContent.ps1 @@ -33,7 +33,7 @@ $GPOs = Get-GPO -All -Domain $Domain foreach ($GPO in $GPOS) { $Count++ - Write-Verbose -Message "Export-GPOZaurr - Exporting ($Count / $($GPOs.Count)) - $($GPO.DisplayName) to $ReportTypeF" + Write-Verbose -Message "Export-GPOZaurr - Exporting ($Count / $($GPOs.Count)) - $($GPO.DisplayName) to $ReportType" $Name = "$($GPO.DomainName)_$($GPO.Id)_$($GPO.DisplayName).xml".Replace(" ", "_").Replace("|", "_") $FullName = [io.path]::Combine($GPOOutput, $Name) Get-GPOReport -Guid $GPO.Id -Domain $GPO.DomainName -ReportType $ReportType -Path $FullName