mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 20:00:09 +00:00
12 lines
267 B
PowerShell
12 lines
267 B
PowerShell
Clear-Host
|
|
Import-Module "$PSScriptRoot\..\GPoZaurr.psd1" -Force
|
|
|
|
$Report = Get-GPOZaurrLinkSummary -Report OneLink
|
|
$Report | Format-Table
|
|
$AffectedGPOs = foreach ($GPO in $Report) {
|
|
if ($GPO.Level1 -gt 1) {
|
|
$GPO
|
|
}
|
|
}
|
|
|
|
$AffectedGPOs | Format-Table * |