Files
GPOZaurr/Public/Remove-GPOZaurrPermission.ps1
T
Przemysław Kłys 82e0e16019 Updates
2020-04-12 10:31:49 +02:00

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"
}
}