mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 11:49:17 +00:00
25 lines
552 B
PowerShell
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
|
|
}
|
|
}
|
|
}
|
|
} |