-
Notifications
You must be signed in to change notification settings - Fork 1
/
Manage-ADShadowGroup.psm1
512 lines (461 loc) · 23.7 KB
/
Manage-ADShadowGroup.psm1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#
# Created by: lucas.cueff[at]lucas-cueff.com
#
# Released on: 02/2017
#
#'(c) 2017 lucas-cueff.com - Distributed under Artistic Licence 2.0 (https://opensource.org/licenses/artistic-license-2.0).'
#
<#
.SYNOPSIS
Help managing Active Directory ShadowGroup (create, add member, remove...)
.DESCRIPTION
Manage-ADShadowGroup.psm1 module help admins to manage AD Shadow Group object in an Active Directory environment.
Require a 2016 Active Directory with "Privileged Access Management Feature" to be used.
Require RSAT if used on non Domain Controller environment.
.NOTE
https://support.microsoft.com/en-us/help/3155495/you-can-t-use-the-active-directory-shadow-principal-groups-feature-for-groups-that-are-always-filtered-out-in-windows
https://msdn.microsoft.com/en-us/library/mt220488.aspx
https://msdn.microsoft.com/en-us/library/mt220162.aspx
.EXAMPLE
C:\PS> import-module Manage-ADShadowGroup.psm1
#>
# begin functions
Function Get-ADShadowGroup {
<#
.SYNOPSIS
Get properties of an AD ShadowGroup, including members
.DESCRIPTION
Get properties of an AD ShadowGroup, including members
.PARAMETER GroupNameValue
Mandatory parameter
-GroupNameValue string
Provide Shadow Group name to search in configuration partition of directory (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.NOTE
TTL value could not be shown if set due to Microsoft limitation (not managed at this time, even if the query is made directly in LDAP)
.OUTPUTS
TypeName: Microsoft.ActiveDirectory.Management.ADObject
CanonicalName : admin.ad/Configuration/Services/Shadow Principal Configuration/PROD-Domain Admins
CN : PROD-Domain Admins
Created : 08/03/2017 16:00:41
createTimeStamp : 08/03/2017 16:00:41
Deleted :
Description :
DisplayName :
DistinguishedName : CN=PROD-Domain Admins,CN=Shadow Principal
Configuration,CN=Services,CN=Configuration,DC=admin,DC=ad
dSCorePropagationData : {01/01/1601 01:00:00}
instanceType : 4
isDeleted :
LastKnownParent :
member : {CN=Temp Prod Admins Shadow,OU=Admins,DC=admin,DC=ad, CN=Temp Prod
Admins,OU=Admins,DC=admin,DC=ad, CN=Prod Admins,OU=Admins,DC=admin,DC=ad}
Modified : 08/03/2017 19:12:47
modifyTimeStamp : 08/03/2017 19:12:47
msDS-ShadowPrincipalSid : S-1-1-11-1111111111-1111111111-111111111-111
Name : PROD-Domain Admins
nTSecurityDescriptor : System.DirectoryServices.ActiveDirectorySecurity
ObjectCategory : CN=ms-DS-Shadow-Principal,CN=Schema,CN=Configuration,DC=admin,DC=ad
ObjectClass : msDS-ShadowPrincipal
ObjectGUID : 37e6ba38-1787-41ef-937f-02a7c0be6fc3
ProtectedFromAccidentalDeletion : False
sDRightsEffective : 11
uSNChanged : 16646
uSNCreated : 16442
whenChanged : 08/03/2017 19:12:47
whenCreated : 08/03/2017 16:00:41
.EXAMPLE
C:\PS> Get-ADShadowGroup -GroupNameValue "Shadow-Domain Admins"
#>
[CmdletBinding()]
Param(
[parameter(Mandatory=$True)]
[String]$GroupNameValue
)
try {
import-module ActiveDirectory
} catch {
Write-Host "Not able to load active directory module - KO" -foregroundcolor "Red"
Write-Host "Please check RSAT is installed if you are running the script on A PC" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CurrentConfigurationPartDN = ([ADSI]"LDAP://RootDSE").configurationNamingContext
$ShadowGroupPath = "cn=Shadow Principal Configuration,cn=Services,$($CurrentConfigurationPartDN)"
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties *
If (-not $CheckObject) {
Write-Host "ShadowPrincipal group $($GroupNameValue) not found ! - KO" -foregroundcolor "Red"
return
}
$CheckObject
}
Function Add-ADShadowGroup {
<#
.SYNOPSIS
Create a new AD ShadowGroup
.DESCRIPTION
Create a new AD ShadowGroup in the default container (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.PARAMETER GroupNameValue
Mandatory parameter
-GroupNameValue string
Provide Shadow Group name to be created in configuration partition of directory (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.PARAMETER GroupSIDValue
Mandatory parameter
-GroupSIDValue string
Provide SID of another AD group or user to shadow
.OUTPUTS
TypeName: Microsoft.ActiveDirectory.Management.ADObject
CanonicalName : admin.ad/Configuration/Services/Shadow Principal Configuration/PROD-Domain Admins
CN : PROD-Domain Admins
Created : 08/03/2017 16:00:41
createTimeStamp : 08/03/2017 16:00:41
Deleted :
Description :
DisplayName :
DistinguishedName : CN=PROD-Domain Admins,CN=Shadow Principal
Configuration,CN=Services,CN=Configuration,DC=admin,DC=ad
dSCorePropagationData : {01/01/1601 01:00:00}
instanceType : 4
isDeleted :
LastKnownParent :
member : {CN=Temp Prod Admins Shadow,OU=Admins,DC=admin,DC=ad, CN=Temp Prod
Admins,OU=Admins,DC=admin,DC=ad, CN=Prod Admins,OU=Admins,DC=admin,DC=ad}
Modified : 08/03/2017 19:12:47
modifyTimeStamp : 08/03/2017 19:12:47
msDS-ShadowPrincipalSid : S-1-1-11-1111111111-1111111111-111111111-111
Name : PROD-Domain Admins
nTSecurityDescriptor : System.DirectoryServices.ActiveDirectorySecurity
ObjectCategory : CN=ms-DS-Shadow-Principal,CN=Schema,CN=Configuration,DC=admin,DC=ad
ObjectClass : msDS-ShadowPrincipal
ObjectGUID : 37e6ba38-1787-41ef-937f-02a7c0be6fc3
ProtectedFromAccidentalDeletion : False
sDRightsEffective : 11
uSNChanged : 16646
uSNCreated : 16442
whenChanged : 08/03/2017 19:12:47
whenCreated : 08/03/2017 16:00:41
.EXAMPLE
C:\PS> Add-ADShadowGroup -GroupNameValue "Shadow-Domain Admins" -GroupSIDValue "S-1-1-11-1111111111-1111111111-111111111-111"
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$False,Position=1)]
[string]$GroupNameValue,
[Parameter(Mandatory=$False,Position=2)]
[string]$GroupSIDValue
)
try {
import-module ActiveDirectory
} catch {
Write-Host "Not able to load active directory module - KO" -foregroundcolor "Red"
Write-Host "Please check RSAT is installed if you are running the script on A PC" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CurrentConfigurationPartDN = ([ADSI]"LDAP://RootDSE").configurationNamingContext
$ShadowGroupPath = "cn=Shadow Principal Configuration,cn=Services,$($CurrentConfigurationPartDN)"
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties DistinguishedName
If ($CheckObject) {
Write-Host "ShadowPrincipal group $($GroupNameValue) already exists ! - KO" -foregroundcolor "Red"
return
}
If ($GroupSIDValue -match 'S-[0-9]-[0-9]-[0-9]{2}-[0-9]{10}-[0-9]{10}-[0-9]{9}-[0-9]{2,}') {
try {
New-ADObject -Type "msDS-ShadowPrincipal" -Name "$($GroupNameValue)" -Path "$($ShadowGroupPath)" -OtherAttributes @{'msDS-ShadowPrincipalSid'= "$($GroupSIDValue)"}
} catch {
Write-Host "Not able to create new ShadowPrincipal group $($GroupNameValue) for SID $($GroupSIDValue) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
} Else {
Write-Host "provided SID not in the right format - KO" -foregroundcolor "Red"
}
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties *
$CheckObject
}
function Remove-ADShadowGroup {
<#
.SYNOPSIS
Remove an existing AD ShadowGroup
.DESCRIPTION
Remove a existing AD ShadowGroup hosted in the default container (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.PARAMETER GroupNameValue
Mandatory parameter
-GroupNameValue string
Provide Shadow Group name to be removed in configuration partition of directory (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.OUTPUTS
Console write-line output
"ShadowPrincipal group XXXX removed correctly ! - OK"
.EXAMPLE
C:\PS> Remove-ADShadowGroup -GroupNameValue "Shadow-Domain Admins"
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$False,Position=1)]
[string]$ShadowGroupToremove
)
try {
import-module ActiveDirectory
} catch {
Write-Host "Not able to load active directory module - KO" -foregroundcolor "Red"
Write-Host "Please check RSAT is installed if you are running the script on A PC" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CurrentConfigurationPartDN = ([ADSI]"LDAP://RootDSE").configurationNamingContext
$ShadowGroupPath = "cn=Shadow Principal Configuration,cn=Services,$($CurrentConfigurationPartDN)"
try {
$ShadowGroups = Get-ADObject -Filter * -SearchBase "$($ShadowGroupPath)" -properties CN
} catch {
Write-Host "Not able to find shadow group in default container of configuration, please investigate - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
try {
$GroupToRemove = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($ShadowGroupToremove.trim())'" -SearchBase "$($ShadowGroupPath)" -properties DistinguishedName
} catch {
Write-Host "Not able to locate ShadowPrincipal group $($ShadowGroupToremove) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
try {
Remove-ADObject $GroupToRemove.distinguishedname -Confirm:$false
} catch {
Write-Host "Not able to remove ShadowPrincipal group $($ShadowGroupToremove) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($ShadowGroupToremove)'" -SearchBase "$($ShadowGroupPath)" -properties *
If (-not $CheckObject) {
Write-Host "ShadowPrincipal group $($ShadowGroupToremove) removed correctly ! - OK" -foregroundcolor "green"
return
}
}
function Add-ADShadowGroupMember {
<#
.SYNOPSIS
Add a new member in an existing AD ShadowGroup
.DESCRIPTION
Add a new member in an existing AD ShadowGroup. The member could be a user or a group but must be located in the same AD hosting the Shadow Group.
.PARAMETER GroupNameValue
Mandatory parameter
-GroupNameValue string
Provide Shadow Group name to be used in configuration partition of directory (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.PARAMETER MemberNameValue
Mandatory parameter
-MemberNameValue string
Provide the name of user or group to be added in the "member" attribute of the AD Shadow Group (object to be searched only in the current AD)
.PARAMETER MemberNameValue
Mandatory parameter
-TypeValue string (user or group)
Provide the type of member to add (user or group) (object to be searched only in the current AD)
.PARAMETER TTLValue
Optional parameter
-TTLValue string (time in second)
Provide the TTL membership for the entry to be added (user or group). At the end of the TTL, the entry is removed automatically from the member attribute of the object.
.OUTPUTS
TypeName: Microsoft.ActiveDirectory.Management.ADObject
CanonicalName : admin.ad/Configuration/Services/Shadow Principal Configuration/PROD-Domain Admins
CN : PROD-Domain Admins
Created : 08/03/2017 16:00:41
createTimeStamp : 08/03/2017 16:00:41
Deleted :
Description :
DisplayName :
DistinguishedName : CN=PROD-Domain Admins,CN=Shadow Principal
Configuration,CN=Services,CN=Configuration,DC=admin,DC=ad
dSCorePropagationData : {01/01/1601 01:00:00}
instanceType : 4
isDeleted :
LastKnownParent :
member : {CN=Temp Prod Admins Shadow,OU=Admins,DC=admin,DC=ad, CN=Temp Prod
Admins,OU=Admins,DC=admin,DC=ad, CN=Prod Admins,OU=Admins,DC=admin,DC=ad}
Modified : 08/03/2017 19:12:47
modifyTimeStamp : 08/03/2017 19:12:47
msDS-ShadowPrincipalSid : S-1-1-11-1111111111-1111111111-111111111-111
Name : PROD-Domain Admins
nTSecurityDescriptor : System.DirectoryServices.ActiveDirectorySecurity
ObjectCategory : CN=ms-DS-Shadow-Principal,CN=Schema,CN=Configuration,DC=admin,DC=ad
ObjectClass : msDS-ShadowPrincipal
ObjectGUID : 37e6ba38-1787-41ef-937f-02a7c0be6fc3
ProtectedFromAccidentalDeletion : False
sDRightsEffective : 11
uSNChanged : 16646
uSNCreated : 16442
whenChanged : 08/03/2017 19:12:47
whenCreated : 08/03/2017 16:00:41
.EXAMPLE
C:\PS> Add-ADShadowGroupMember -GroupNameValue "Shadow-Domain Admins" -MemberNameValue "Domain Admins" -MemberNameValue group
.EXAMPLE
C:\PS> Add-ADShadowGroupMember -GroupNameValue "Shadow-Domain Admins" -MemberNameValue "Super-Admin" -MemberNameValue user
.EXAMPLE
C:\PS> Add-ADShadowGroupMember -GroupNameValue "Shadow-Domain Admins" -MemberNameValue "Temp-Super-Admin" -MemberNameValue user -TTLValue "3600"
#>
Param(
[Parameter(Mandatory=$true,Position=1)]
[string]$GroupNameValue,
[Parameter(Mandatory=$true,Position=2)]
[string]$MemberNameValue,
[parameter(Mandatory=$true,Position=3)]
[ValidateSet("user", "group")]
[String]$TypeValue,
[Parameter(Mandatory=$False,Position=4)]
[string]$TTLValue
)
try {
import-module ActiveDirectory
} catch {
Write-Host "Not able to load active directory module - KO" -foregroundcolor "Red"
Write-Host "Please check RSAT is installed if you are running the script on A PC" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CurrentConfigurationPartDN = ([ADSI]"LDAP://RootDSE").configurationNamingContext
$ADPArtDN = ([ADSI]"LDAP://RootDSE").defaultNamingContext
$ShadowGroupPath = "cn=Shadow Principal Configuration,cn=Services,$($CurrentConfigurationPartDN)"
$CheckShadowObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties member
$CheckShadowObjectDN = $CheckShadowObject.DistinguishedName | select-object
If (-not $CheckShadowObject) {
Write-Host "ShadowPrincipal group $($GroupNameValue) not found ! - KO" -foregroundcolor "Red"
return
}
try {
$checkUserObject = get-adobject -Filter "ObjectClass -eq '$($TypeValue)' -and cn -eq '$($MemberNameValue)'" -SearchBase "$($ADPArtDN)" -SearchScope Subtree -properties *
$checkUserObjectDN = $checkUserObject.DistinguishedName | select-object
} catch {
Write-Host "Not able to find $($MemberNameValue) in current AD - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
If ($TTLValue) {
try {
Set-ADObject -Identity "$($CheckShadowObjectDN)" -Add @{'member'="<TTL=$($TTLValue),$($checkUserObjectDN)>"}
} catch {
Write-Host "Not able to add $($MemberNameValue) to $($GroupNameValue) with TTL $($TTLValue) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
} Else {
try {
Set-ADObject -Identity "$($CheckShadowObjectDN)" -Add @{'member'="$($checkUserObjectDN)"}
} catch {
Write-Host "Not able to add $($MemberNameValue) to $($GroupNameValue) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
}
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties *
$CheckObject
}
function Remove-ADShadowGroupMember {
<#
.SYNOPSIS
Remove an existing member in an existing AD ShadowGroup
.DESCRIPTION
Remove an existing member in an existing AD ShadowGroup.
.PARAMETER GroupNameValue
Mandatory parameter
-GroupNameValue string
Provide Shadow Group name to be used in configuration partition of directory (cn=Shadow Principal Configuration,cn=Services...) (object to be searched only in the current AD)
.PARAMETER MemberNameValue
Mandatory parameter
-MemberNameValue string
Provide the name of user or group to be removed in the "member" attribute of the AD Shadow Group (object to be searched only in the current AD)
.PARAMETER MemberNameValue
Mandatory parameter
-TypeValue string (user or group)
Provide the type of member to remove (user or group) (object to be searched only in the current AD)
.OUTPUTS
TypeName: Microsoft.ActiveDirectory.Management.ADObject
CanonicalName : admin.ad/Configuration/Services/Shadow Principal Configuration/PROD-Domain Admins
CN : PROD-Domain Admins
Created : 08/03/2017 16:00:41
createTimeStamp : 08/03/2017 16:00:41
Deleted :
Description :
DisplayName :
DistinguishedName : CN=PROD-Domain Admins,CN=Shadow Principal
Configuration,CN=Services,CN=Configuration,DC=admin,DC=ad
dSCorePropagationData : {01/01/1601 01:00:00}
instanceType : 4
isDeleted :
LastKnownParent :
member : {CN=Temp Prod Admins Shadow,OU=Admins,DC=admin,DC=ad, CN=Temp Prod
Admins,OU=Admins,DC=admin,DC=ad, CN=Prod Admins,OU=Admins,DC=admin,DC=ad}
Modified : 08/03/2017 19:12:47
modifyTimeStamp : 08/03/2017 19:12:47
msDS-ShadowPrincipalSid : S-1-1-11-1111111111-1111111111-111111111-111
Name : PROD-Domain Admins
nTSecurityDescriptor : System.DirectoryServices.ActiveDirectorySecurity
ObjectCategory : CN=ms-DS-Shadow-Principal,CN=Schema,CN=Configuration,DC=admin,DC=ad
ObjectClass : msDS-ShadowPrincipal
ObjectGUID : 37e6ba38-1787-41ef-937f-02a7c0be6fc3
ProtectedFromAccidentalDeletion : False
sDRightsEffective : 11
uSNChanged : 16646
uSNCreated : 16442
whenChanged : 08/03/2017 19:12:47
whenCreated : 08/03/2017 16:00:41
.EXAMPLE
C:\PS> Remove-ADShadowGroupMember -GroupNameValue "Shadow-Domain Admins" -MemberNameValue "Domain Admins" -MemberNameValue group
.EXAMPLE
C:\PS> Remove-ADShadowGroupMember -GroupNameValue "Shadow-Domain Admins" -MemberNameValue "Super-Admin" -MemberNameValue user
#>
Param(
[Parameter(Mandatory=$true,Position=1)]
[string]$GroupNameValue,
[Parameter(Mandatory=$true,Position=2)]
[string]$MemberNameValue,
[parameter(Mandatory=$true,Position=3)]
[ValidateSet("user", "group")]
[String]$TypeValue
)
try {
import-module ActiveDirectory
} catch {
Write-Host "Not able to load active directory module - KO" -foregroundcolor "Red"
Write-Host "Please check RSAT is installed if you are running the script on A PC" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CurrentConfigurationPartDN = ([ADSI]"LDAP://RootDSE").configurationNamingContext
$ADPArtDN = ([ADSI]"LDAP://RootDSE").defaultNamingContext
$ShadowGroupPath = "cn=Shadow Principal Configuration,cn=Services,$($CurrentConfigurationPartDN)"
$CheckShadowObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties member
$CheckShadowObjectDN = $CheckShadowObject.DistinguishedName | select-object
If (-not $CheckShadowObject) {
Write-Host "ShadowPrincipal group $($GroupNameValue) not found ! - KO" -foregroundcolor "Red"
return
}
try {
$checkUserObject = get-adobject -Filter "ObjectClass -eq '$($TypeValue)' -and cn -eq '$($MemberNameValue)'" -SearchBase "$($ADPArtDN)" -SearchScope Subtree -properties *
$checkUserObjectDN = $checkUserObject.DistinguishedName | select-object
} catch {
Write-Host "Not able to find $($MemberNameValue) in current AD - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
try {
Set-ADObject -Identity "$($CheckShadowObjectDN)" -Remove @{'member'="$($checkUserObjectDN)"}
} catch {
Write-Host "Not able to remove $($MemberNameValue) from $($GroupNameValue) - KO" -foregroundcolor "Red"
write-host "Error Type: $($_.Exception.GetType().FullName)" -ForegroundColor "Yellow"
write-host "Error Message: $($_.Exception.Message)" -ForegroundColor "Yellow"
return
}
$CheckObject = get-adobject -Filter "ObjectClass -eq 'msDS-ShadowPrincipal' -and Name -eq '$($GroupNameValue)'" -SearchBase "$($ShadowGroupPath)" -properties *
$CheckObject
}
Export-ModuleMember -Function Add-ADShadowGroupMember, Remove-ADShadowGroup, Add-ADShadowGroup, Get-ADShadowGroup, Remove-ADShadowGroupMember