Files
GPOZaurr/Private/Invoke.GPOZaurrAnalysis.ps1
T
Przemyslaw Klys 3e5c5fd6fb Update
2020-11-07 16:13:02 +01:00

25 lines
588 B
PowerShell

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