Updated examples

This commit is contained in:
Przemyslaw Klys
2020-08-05 13:59:04 +02:00
parent 40e422682b
commit 57efc58c2f
6 changed files with 13 additions and 15 deletions
+4 -2
View File
@@ -1,7 +1,9 @@
Import-Module "$PSScriptRoot\..\GPoZaurr.psd1" -Force
$Output = Invoke-GPOZaurr
$Output = Invoke-GPOZaurr -GPOPath 'C:\Support\GitHub\GpoZaurr\Ignore\GPOExportEvotec1'
$Output | Format-Table
$Output.Reports.RegistrySettings | Format-Table *
$Output.Reports.InternetExplorerZones | Format-Table *
# Report to Excel of translated reports
foreach ($Key in $Output.Reports.Keys) {
@@ -12,7 +14,7 @@ foreach ($Key in $Output.Reports.Keys) {
New-HTML {
foreach ($Key in $Output.Reports.Keys) {
New-HTMLTab -Name $Key {
New-HTMLTable -DataTable $Output.Reports[$Key] -Filtering
New-HTMLTable -DataTable $Output.Reports[$Key] -Filtering
}
}
} -FilePath $Env:USERPROFILE\Desktop\GPOAnalysis.html -ShowHTML -Online