mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-08-18 14:33:11 +00:00
21 lines
373 B
PowerShell
21 lines
373 B
PowerShell
$GPOZaurrFiles = [ordered] @{
|
|
Name = 'SYSVOL (NetLogon) Files List'
|
|
Enabled = $true
|
|
Action = $null
|
|
Data = $null
|
|
Execute = {
|
|
Get-GPOZaurrFiles
|
|
}
|
|
Processing = {
|
|
|
|
}
|
|
Variables = @{
|
|
|
|
}
|
|
Overview = {
|
|
|
|
}
|
|
Solution = {
|
|
New-HTMLTable -DataTable $GPOZaurrFiles['Data'] -Filtering
|
|
}
|
|
} |