mirror of
https://github.com/EvotecIT/GPOZaurr.git
synced 2026-08-12 11:47:08 +00:00
14 lines
303 B
PowerShell
14 lines
303 B
PowerShell
function Skip-GroupPolicy {
|
|
[cmdletBinding()]
|
|
param(
|
|
[ValidateSet('GPOList')][string] $Type,
|
|
[string] $Name,
|
|
[string] $DomaiName
|
|
)
|
|
@{
|
|
Type = 'Exclusion'
|
|
ReportType = $Type
|
|
Name = $Name
|
|
DomainName = $DomaiName
|
|
}
|
|
} |