Files
GPOZaurr/Private/Invoke.GPOZaurrAnalysis.ps1
T
Przemyslaw Klys 731ba420b9 Update
2020-11-05 22:46:10 +01:00

25 lines
522 B
PowerShell

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