This commit is contained in:
Przemyslaw Klys
2020-12-03 09:43:27 +01:00
parent 9af0dd57c4
commit c73c5ca48a
5 changed files with 88 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
function Skip-GroupPolicy {
[cmdletBinding()]
param(
[ValidateSet('GPOList')][string] $Type,
[string] $Name,
[string] $DomaiName
)
@{
Type = 'Exclusion'
ReportType = $Type
Name = $Name
DomainName = $DomaiName
}
}