Files
GPOZaurr/Private/Invoke.GPOZaurrAnalysis.ps1
T
Przemyslaw Klys ad2067c714 Update
2020-11-05 16:36:48 +01:00

24 lines
492 B
PowerShell

$GPOZaurrAnalysis = [ordered] @{
Name = 'GPO Permissions Consistency'
Enabled = $true
Data = $null
Execute = {
$GPOContent = Invoke-GPOZaurrContent
}
Processing = {
}
Variables = @{
}
Overview = {
}
Solution = {
foreach ($Key in $GPOContent.Keys) {
New-HTMLTab -Name $Key {
New-HTMLTable -DataTable $GPOContent[$Key] -Filtering -Title $Key
}
}
}
}