mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-07-26 11:49:17 +00:00
10 lines
424 B
PowerShell
10 lines
424 B
PowerShell
Import-Module "$PSScriptRoot\..\GPoZaurr.psd1" -Force
|
|
|
|
#Get-GPOZaurrPermissionConsistency -Type All -Forest 'test.evotec.pl' | Format-Table
|
|
Get-GPOZaurrPermissionConsistency -Type Inconsistent | ForEach-Object {
|
|
$G = Get-GPOZaurrAD -GPOGuid $_.ID.GUID -IncludeDomains $_.DomainName
|
|
$P = Get-GPOZaurrPermission -GPOGuid $_.ID.GUID
|
|
$F = Get-WinADShare -Path $G.Path
|
|
$P | Format-Table
|
|
$F | Format-Table
|
|
} |