Files
GPOZaurr/Private/Invoke.GPOZaurrAnalysis.ps1
T
Przemyslaw Klys 2a92c90b0c Update
2020-11-07 16:07:00 +01:00

25 lines
552 B
PowerShell

$GPOZaurrAnalysis = [ordered] @{
Name = 'Group Policy Content'
Enabled = $true
Action = $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
}
}
}
}