Files
GPOZaurr/Private/Invoke.GPOZaurrAnalysis.ps1
T
Przemyslaw Klys b5e4fd07dc Update
2020-11-05 11:28:58 +01:00

22 lines
444 B
PowerShell

$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
}
}
}
}