mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-09-01 05:07:57 +00:00
13 lines
571 B
PowerShell
13 lines
571 B
PowerShell
function Remove-GPOZaurrPermission {
|
|
[cmdletBinding()]
|
|
param(
|
|
[string] $Type,
|
|
[alias('ForestName')][string] $Forest,
|
|
[string[]] $ExcludeDomains,
|
|
[alias('Domain', 'Domains')][string[]] $IncludeDomains,
|
|
[System.Collections.IDictionary] $ExtendedForestInformation
|
|
)
|
|
Get-GPOZaurrPermission -Forest $Forest -IncludeDomains $IncludeDomains -ExcludeDomains $ExcludeDomains -ExtendedForestInformation $ExtendedForestInformation | ForEach-Object -Process {
|
|
Write-Verbose "Remove-GPOZaurrPermission - Test"
|
|
}
|
|
} |