This commit is contained in:
Przemyslaw Klys
2020-11-05 11:28:58 +01:00
parent 981e71483a
commit b5e4fd07dc
10 changed files with 482 additions and 496 deletions
+22
View File
@@ -0,0 +1,22 @@
$GPOZaurrAnalysis = [ordered] @{
Name = 'GPO Permissions Consistency'
Enabled = $true
Data = $null
Execute = { }
Processing = {
}
Variables = @{
}
Overview = {
}
Solution = {
foreach ($Key in $GPOContent.Keys) {
New-HTMLTab -Name $Key {
New-HTMLTable -DataTable $GPOContent[$Key] -Filtering -Title $Key
}
}
}
}