-
Notifications
You must be signed in to change notification settings - Fork 141
/
ActiveDirectoryDsc.Common.psm1
2686 lines (2163 loc) · 77 KB
/
ActiveDirectoryDsc.Common.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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$resourceModulePath = Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent
$modulesFolderPath = Join-Path -Path $resourceModulePath -ChildPath 'Modules'
$dscResourceCommonModulePath = Join-Path -Path $modulesFolderPath -ChildPath 'DscResource.Common'
Import-Module -Name $dscResourceCommonModulePath
$script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US'
<#
.SYNOPSIS
Starts a process with a timeout.
.DESCRIPTION
The Start-ProcessWithTimeout function is used to start a process with a timeout. An Int32 object is returned
representing the exit code of the started process.
.EXAMPLE
Start-ProcessWithTimeout -FilePath 'djoin.exe' -ArgumentList '/PROVISION /DOMAIN contoso.com /MACHINE SRV1' -Timeout 300
.PARAMETER FilePath
Specifies the path to the executable to start.
.PARAMETER ArgumentList
Specifies he arguments that should be passed to the executable.
.PARAMETER Timeout
Specifies the timeout in seconds to wait for the process to finish.
.INPUTS
None
.OUTPUTS
System.Int32
#>
function Start-ProcessWithTimeout
{
[CmdletBinding()]
[OutputType([System.Int32])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$FilePath,
[Parameter()]
[System.String[]]
$ArgumentList,
[Parameter(Mandatory = $true)]
[System.UInt32]
$Timeout
)
$startProcessParameters = @{
FilePath = $FilePath
ArgumentList = $ArgumentList
PassThru = $true
NoNewWindow = $true
ErrorAction = 'Stop'
}
$process = Start-Process @startProcessParameters
Write-Verbose -Message ($script:localizedData.StartProcess -f $process.Id, $FilePath, $Timeout) -Verbose
Wait-Process -InputObject $process -Timeout $Timeout -ErrorAction 'Stop'
return $process.ExitCode
}
<#
.SYNOPSIS
Tests whether this computer is a member of a domain.
.DESCRIPTION
The Test-DomainMember function is used to test whether this computer is a member of a domain. A boolean is
returned indicating the domain membership of the computer.
.EXAMPLE
Test-DomainMember
.INPUTS
None
.OUTPUTS
System.Boolean
#>
function Test-DomainMember
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param ()
$isDomainMember = [System.Boolean] (Get-CimInstance -ClassName Win32_ComputerSystem -Verbose:$false).PartOfDomain
return $isDomainMember
}
<#
.SYNOPSIS
Gets the domain name of this computer.
.DESCRIPTION
The Get-DomainName function is used to get the name of the Active Directory domain that the computer is a
member of.
.EXAMPLE
Get-DomainName
.INPUTS
None
.OUTPUTS
System.String
#>
function Get-DomainName
{
[CmdletBinding()]
[OutputType([System.String])]
param ()
$domainName = [System.String] (Get-CimInstance -ClassName Win32_ComputerSystem -Verbose:$false).Domain
return $domainName
}
<#
.SYNOPSIS
Get an Active Directory object's parent distinguished name.
.DESCRIPTION
The Get-ADObjectParentDN function is used to get an Active Directory object parent's distinguished name.
.EXAMPLE
Get-ADObjectParentDN -DN CN=User1,CN=Users,DC=contoso,DC=com
Returns CN=Users,DC=contoso,DC=com
.PARAMETER DN
Specifies the distinguished name of the object to return the parent from.
.INPUTS
None
.OUTPUTS
System.String
#>
function Get-ADObjectParentDN
{
[CmdletBinding()]
[OutputType([System.String])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$DN
)
# https://www.uvm.edu/~gcd/2012/07/listing-parent-of-ad-object-in-powershell/
$distinguishedNameParts = $DN -split '(?<![\\]),'
return $distinguishedNameParts[1..$($distinguishedNameParts.Count - 1)] -join ','
}
<#
.SYNOPSIS
Assert the Members, MembersToInclude and MembersToExclude combination is valid.
.DESCRIPTION
The Assert-MemberParameters function is used to assert the Members, MembersToInclude and MembersToExclude
combination is valid. If the combination is invalid, an InvalidArgumentError is raised.
.EXAMPLE
Assert-MemberParameters -Members fred, bill
.PARAMETER Members
Specifies the Members to validate.
.PARAMETER MembersToInclude
Specifies the MembersToInclude to validate.
.PARAMETER MembersToExclude
Specifies the MembersToExclude to validate.
.INPUTS
None
.OUTPUTS
None
#>
function Assert-MemberParameters
{
[CmdletBinding()]
param
(
[Parameter()]
[System.String[]]
$Members,
[Parameter()]
[ValidateNotNull()]
[System.String[]]
$MembersToInclude,
[Parameter()]
[ValidateNotNull()]
[System.String[]]
$MembersToExclude
)
if ($PSBoundParameters.ContainsKey('Members'))
{
if ($PSBoundParameters.ContainsKey('MembersToInclude') -or $PSBoundParameters.ContainsKey('MembersToExclude'))
{
# If Members are provided, Include and Exclude are not allowed.
$errorMessage = $script:localizedData.MembersAndIncludeExcludeError -f 'Members', 'MembersToInclude', 'MembersToExclude'
New-InvalidArgumentException -ArgumentName 'Members' -Message $errorMessage
}
}
$MembersToInclude = Remove-DuplicateMembers -Members $MembersToInclude
$MembersToExclude = Remove-DuplicateMembers -Members $MembersToExclude
# Check if MembersToInclude and MembersToExclude have common principals.
foreach ($member in $MembersToInclude)
{
if ($member -in $MembersToExclude)
{
$errorMessage = $script:localizedData.IncludeAndExcludeConflictError -f $member, 'MembersToInclude', 'MembersToExclude'
New-InvalidArgumentException -ArgumentName 'MembersToInclude, MembersToExclude' -Message $errorMessage
}
}
}
<#
.SYNOPSIS
Removes duplicate members from a string array.
.DESCRIPTION
The Remove-DuplicateMembers function is used to remove duplicate members from a string array. The comparison
is case insensitive. A string array is returned containing the resultant members.
.EXAMPLE
Remove-DuplicateMembers -Members fred, bill, bill
.PARAMETER Members
Specifies the array of members to remove duplicates from.
.INPUTS
None
.OUTPUTS
System.String[]
#>
function Remove-DuplicateMembers
{
[CmdletBinding()]
[OutputType([System.String[]])]
param
(
[Parameter()]
[System.String[]]
$Members
)
if ($null -eq $Members -or $Members.Count -eq 0)
{
$uniqueMembers = @()
}
else
{
$uniqueMembers = @($members | Sort-Object -Unique)
}
<#
Comma makes sure we return the string array as the correct type,
and also makes sure one entry is returned as a string array.
#>
return , $uniqueMembers
}
<#
.SYNOPSIS
Tests Members of an array.
.DESCRIPTION
The Test-Members function is used to test whether the existing array members match the defined explicit array
and include/exclude the specified members. A boolean is returned that represents if the existing array members
match.
.EXAMPLE
Test-Members -ExistingMembers fred, bill -Members fred, bill
.PARAMETER ExistingMembers
Specifies existing array members.
.PARAMETER Members
Specifies explicit array members.
.PARAMETER MembersToInclude
Specifies compulsory array members.
.PARAMETER MembersToExclude
Specifies excluded array members.
.INPUTS
None
.OUTPUTS
System.Boolean
#>
function Test-Members
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter()]
[AllowNull()]
[System.String[]]
$ExistingMembers,
[Parameter()]
[AllowNull()]
[System.String[]]
$Members,
[Parameter()]
[AllowNull()]
[System.String[]]
$MembersToInclude,
[Parameter()]
[AllowNull()]
[System.String[]]
$MembersToExclude
)
if ($PSBoundParameters.ContainsKey('Members'))
{
if ($null -eq $Members -or (($Members.Count -eq 1) -and ($Members[0].Length -eq 0)))
{
$Members = @()
}
Write-Verbose ($script:localizedData.CheckingMembers -f 'Explicit')
$Members = Remove-DuplicateMembers -Members $Members
if ($ExistingMembers.Count -ne $Members.Count)
{
Write-Verbose -Message ($script:localizedData.MembershipCountMismatch -f $Members.Count, $ExistingMembers.Count)
return $false
}
$isInDesiredState = $true
foreach ($member in $Members)
{
if ($member -notin $ExistingMembers)
{
Write-Verbose -Message ($script:localizedData.MemberNotInDesiredState -f $member)
$isInDesiredState = $false
}
}
if (-not $isInDesiredState)
{
Write-Verbose -Message ($script:localizedData.MembershipNotDesiredState -f $member)
return $false
}
} #end if $Members
if ($PSBoundParameters.ContainsKey('MembersToInclude'))
{
if ($null -eq $MembersToInclude -or (($MembersToInclude.Count -eq 1) -and ($MembersToInclude[0].Length -eq 0)))
{
$MembersToInclude = @()
}
Write-Verbose -Message ($script:localizedData.CheckingMembers -f 'Included')
$MembersToInclude = Remove-DuplicateMembers -Members $MembersToInclude
$isInDesiredState = $true
foreach ($member in $MembersToInclude)
{
if ($member -notin $ExistingMembers)
{
Write-Verbose -Message ($script:localizedData.MemberNotInDesiredState -f $member)
$isInDesiredState = $false
}
}
if (-not $isInDesiredState)
{
Write-Verbose -Message ($script:localizedData.MembershipNotDesiredState -f $member)
return $false
}
} #end if $MembersToInclude
if ($PSBoundParameters.ContainsKey('MembersToExclude'))
{
if ($null -eq $MembersToExclude -or (($MembersToExclude.Count -eq 1) -and ($MembersToExclude[0].Length -eq 0)))
{
$MembersToExclude = @()
}
Write-Verbose -Message ($script:localizedData.CheckingMembers -f 'Excluded')
$MembersToExclude = Remove-DuplicateMembers -Members $MembersToExclude
$isInDesiredState = $true
foreach ($member in $MembersToExclude)
{
if ($member -in $ExistingMembers)
{
Write-Verbose -Message ($script:localizedData.MemberNotInDesiredState -f $member)
$isInDesiredState = $false
}
}
if (-not $isInDesiredState)
{
Write-Verbose -Message ($script:localizedData.MembershipNotDesiredState -f $member)
return $false
}
} #end if $MembersToExclude
Write-Verbose -Message $script:localizedData.MembershipInDesiredState
return $true
}
<#
.SYNOPSIS
Converts a specified time period into a TimeSpan object.
.DESCRIPTION
The ConvertTo-TimeSpan function is used to convert a specified time period in seconds, minutes, hours or days
into a TimeSpan object.
.EXAMPLE
ConvertTo-TimeSpan -TimeSpan 60 -TimeSpanType Minutes
.PARAMETER TimeSpan
Specifies the length of time to use for the time span.
.PARAMETER TimeSpanType
Specifies the units of measure in the TimeSpan parameter.
.INPUTS
None
.OUTPUTS
System.TimeSpan
#>
function ConvertTo-TimeSpan
{
[CmdletBinding()]
[OutputType([System.TimeSpan])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.UInt32]
$TimeSpan,
[Parameter(Mandatory = $true)]
[ValidateSet('Seconds', 'Minutes', 'Hours', 'Days')]
[System.String]
$TimeSpanType
)
$newTimeSpanParams = @{}
switch ($TimeSpanType)
{
'Seconds'
{
$newTimeSpanParams['Seconds'] = $TimeSpan
}
'Minutes'
{
$newTimeSpanParams['Minutes'] = $TimeSpan
}
'Hours'
{
$newTimeSpanParams['Hours'] = $TimeSpan
}
'Days'
{
$newTimeSpanParams['Days'] = $TimeSpan
}
}
return (New-TimeSpan @newTimeSpanParams)
}
<#
.SYNOPSIS
Converts a TimeSpan object into the number of seconds, minutes, hours or days.
.DESCRIPTION
The ConvertFrom-TimeSpan function is used to Convert a TimeSpan object into an Integer containing the number of
seconds, minutes, hours or days within the timespan.
.EXAMPLE
ConvertFrom-TimeSpan -TimeSpan (New-TimeSpan -Days 15) -TimeSpanType Seconds
Returns the number of seconds in 15 days.
.PARAMETER TimeSpan
Specifies the TimeSpan object to convert into an integer.
.PARAMETER TimeSpanType
Specifies the unit of measure to be used in the conversion.
.INPUTS
None
.OUTPUTS
System.Int32
#>
function ConvertFrom-TimeSpan
{
[CmdletBinding()]
[OutputType([System.Int32])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.TimeSpan]
$TimeSpan,
[Parameter(Mandatory = $true)]
[ValidateSet('Seconds', 'Minutes', 'Hours', 'Days')]
[System.String]
$TimeSpanType
)
switch ($TimeSpanType)
{
'Seconds'
{
return $TimeSpan.TotalSeconds -as [System.UInt32]
}
'Minutes'
{
return $TimeSpan.TotalMinutes -as [System.UInt32]
}
'Hours'
{
return $TimeSpan.TotalHours -as [System.UInt32]
}
'Days'
{
return $TimeSpan.TotalDays -as [System.UInt32]
}
}
} #end function ConvertFrom-TimeSpan
<#
.SYNOPSIS
Gets a common AD cmdlet connection parameter for splatting.
.DESCRIPTION
The Get-ADCommonParameters function is used to get a common AD cmdlet connection parameter for splatting. A
hashtable is returned containing the derived connection parameters.
.PARAMETER Identity
Specifies the identity to use as the Identity or Name connection parameter. Aliases are 'UserName',
'GroupName', 'ComputerName' and 'ServiceAccountName'.
.PARAMETER CommonName
When specified, a CommonName overrides the Identity used as the Name key. For example, the Get-ADUser,
Set-ADUser and Remove-ADUser cmdlets take an Identity parameter, but the New-ADUser cmdlet uses the Name
parameter.
.PARAMETER Credential
Specifies the credentials to use when accessing the domain, or use the current user if not specified.
.PARAMETER Server
Specifies the name of the domain controller to use when accessing the domain. If not specified, a domain
controller is discovered using the standard Active Directory discovery process.
.PARAMETER UseNameParameter
Specifies to return the Identity as the Name key. For example, the Get-ADUser, Set-ADUser and Remove-ADUser
cmdlets take an Identity parameter, but the New-ADUser cmdlet uses the Name parameter.
.PARAMETER PreferCommonName
If specified along with a CommonName parameter, The CommonName will be used as the Identity or Name connection
parameter instead of the Identity parameter.
.EXAMPLE
Get-CommonADParameters @PSBoundParameters
Returns connection parameters suitable for Get-ADUser using the splatted cmdlet parameters.
.EXAMPLE
Get-CommonADParameters @PSBoundParameters -UseNameParameter
Returns connection parameters suitable for New-ADUser using the splatted cmdlet parameters.
.INPUTS
None
.OUTPUTS
System.Collections.Hashtable
#>
function Get-ADCommonParameters
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias('UserName', 'GroupName', 'ComputerName', 'ServiceAccountName', 'Name')]
[System.String]
$Identity,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.String]
$CommonName,
[Parameter()]
[ValidateNotNull()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.CredentialAttribute()]
$Credential,
[Parameter()]
[ValidateNotNullOrEmpty()]
[Alias('DomainController')]
[System.String]
$Server,
[Parameter()]
[System.Management.Automation.SwitchParameter]
$UseNameParameter,
[Parameter()]
[System.Management.Automation.SwitchParameter]
$PreferCommonName,
# Catch all to enable splatted $PSBoundParameters
[Parameter(ValueFromRemainingArguments)]
$RemainingArguments
)
if ($UseNameParameter)
{
if ($PreferCommonName -and ($PSBoundParameters.ContainsKey('CommonName')))
{
$adConnectionParameters = @{
Name = $CommonName
}
}
else
{
$adConnectionParameters = @{
Name = $Identity
}
}
}
else
{
if ($PreferCommonName -and ($PSBoundParameters.ContainsKey('CommonName')))
{
$adConnectionParameters = @{
Identity = $CommonName
}
}
else
{
$adConnectionParameters = @{
Identity = $Identity
}
}
}
if ($Credential)
{
$adConnectionParameters['Credential'] = $Credential
}
if ($Server)
{
$adConnectionParameters['Server'] = $Server
}
return $adConnectionParameters
}
<#
.SYNOPSIS
Tests Active Directory replication site availablity.
.DESCRIPTION
The Test-ADReplicationSite function is used to test Active Directory replication site availablity. A boolean is
returned that represents the replication site availability.
.EXAMPLE
Test-ADReplicationSite -SiteName Default -DomainName contoso.com
.PARAMETER SiteName
Specifies the replication site name to test the availability of.
.PARAMETER DomainName
Specifies the domain name containing the replication site.
.PARAMETER Credential
Specifies the credentials to use when accessing the domain, or use the current user if not specified.
.INPUTS
None
.OUTPUTS
System.Boolean
#>
function Test-ADReplicationSite
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$SiteName,
[Parameter(Mandatory = $true)]
[System.String]
$DomainName,
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$Credential
)
Write-Verbose -Message ($script:localizedData.CheckingSite -f $SiteName)
$existingDC = "$((Get-ADDomainController -Discover -DomainName $DomainName -ForceDiscover).HostName)"
try
{
$site = Get-ADReplicationSite -Identity $SiteName -Server $existingDC -Credential $Credential
}
catch [Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException]
{
return $false
}
return ($null -ne $site)
}
<#
.SYNOPSIS
Converts a ModeId or ADForestMode object to a ForestMode object.
.DESCRIPTION
The ConvertTo-DeploymentForestMode function is used to convert a
Microsoft.ActiveDirectory.Management.ADForestMode object or a ModeId to a
Microsoft.DirectoryServices.Deployment.Types.ForestMode object.
.EXAMPLE
ConvertTo-DeploymentForestMode -Mode $adForestMode
.PARAMETER ModeId
Specifies the ModeId value to convert to a Microsoft.DirectoryServices.Deployment.Types.ForestMode type.
.PARAMETER Mode
Specifies the Microsoft.ActiveDirectory.Management.ADForestMode value to convert to a
Microsoft.DirectoryServices.Deployment.Types.ForestMode type.
.INPUTS
None
.OUTPUTS
Microsoft.DirectoryServices.Deployment.Types.ForestMode
#>
function ConvertTo-DeploymentForestMode
{
[CmdletBinding()]
[OutputType([Microsoft.DirectoryServices.Deployment.Types.ForestMode])]
param
(
[Parameter(
Mandatory = $true,
ParameterSetName = 'ById')]
[System.UInt16]
$ModeId,
[Parameter(
Mandatory = $true,
ParameterSetName = 'ByName')]
[AllowNull()]
[System.Nullable``1[Microsoft.ActiveDirectory.Management.ADForestMode]]
$Mode
)
$convertedMode = $null
if ($PSCmdlet.ParameterSetName -eq 'ByName' -and $Mode)
{
$convertedMode = $Mode -as [Microsoft.DirectoryServices.Deployment.Types.ForestMode]
}
if ($PSCmdlet.ParameterSetName -eq 'ById')
{
$convertedMode = $ModeId -as [Microsoft.DirectoryServices.Deployment.Types.ForestMode]
}
if ([enum]::GetValues([Microsoft.DirectoryServices.Deployment.Types.ForestMode]) -notcontains $convertedMode)
{
return $null
}
return $convertedMode
}
<#
.SYNOPSIS
Converts a ModeId or ADDomainMode object to a DomainMode object.
.DESCRIPTION
The ConvertTo-DeploymentDomainMode function is used to convert a
Microsoft.ActiveDirectory.Management.ADDomainMode object or a ModeId to a
Microsoft.DirectoryServices.Deployment.Types.DomainMode object.
.EXAMPLE
ConvertTo-DeploymentDomainMode -Mode $adDomainMode
.PARAMETER ModeId
Specifies the ModeId value to convert to a Microsoft.DirectoryServices.Deployment.Types.DomainMode type.
.PARAMETER Mode
Specifies the Microsoft.ActiveDirectory.Management.ADDomainMode value to convert to a
Microsoft.DirectoryServices.Deployment.Types.DomainMode type.
.INPUTS
None
.OUTPUTS
Microsoft.DirectoryServices.Deployment.Types.DomainMode
#>
function ConvertTo-DeploymentDomainMode
{
[CmdletBinding()]
[OutputType([Microsoft.DirectoryServices.Deployment.Types.DomainMode])]
param
(
[Parameter(
Mandatory = $true,
ParameterSetName = 'ById')]
[System.UInt16]
$ModeId,
[Parameter(
Mandatory = $true,
ParameterSetName = 'ByName')]
[AllowNull()]
[System.Nullable``1[Microsoft.ActiveDirectory.Management.ADDomainMode]]
$Mode
)
$convertedMode = $null
if ($PSCmdlet.ParameterSetName -eq 'ByName' -and $Mode)
{
$convertedMode = $Mode -as [Microsoft.DirectoryServices.Deployment.Types.DomainMode]
}
if ($PSCmdlet.ParameterSetName -eq 'ById')
{
$convertedMode = $ModeId -as [Microsoft.DirectoryServices.Deployment.Types.DomainMode]
}
if ([enum]::GetValues([Microsoft.DirectoryServices.Deployment.Types.DomainMode]) -notcontains $convertedMode)
{
return $null
}
return $convertedMode
}
<#
.SYNOPSIS
Restores an AD object from the AD recyle bin.
.DESCRIPTION
The Restore-ADCommonObject function is used to Restore an AD object from the AD recyle bin. An ADObject is
returned that represents the restored object.
.EXAMPLE
Restore-ADCommonObject -Identity User1 -ObjectClass User
.PARAMETER Identity
Specifies the identity of the object to restore.
.PARAMETER ObjectClass
Specifies the type of the AD object to restore.
.PARAMETER Credential
Specifies the credentials to use when accessing the domain, or use the current user if not specified.
.PARAMETER Server
Specifies the name of the domain controller to use when accessing the domain. If not specified, a domain
controller is discovered using the standard Active Directory discovery process.
.INPUTS
None
.OUTPUTS
Microsoft.ActiveDirectory.Management.ADObject
#>
function Restore-ADCommonObject
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias('UserName', 'GroupName', 'ComputerName', 'ServiceAccountName')]
[System.String]
$Identity,
[Parameter(Mandatory = $true)]
[ValidateSet('Computer', 'OrganizationalUnit', 'User', 'Group')]
[System.String]
$ObjectClass,
[Parameter()]
[ValidateNotNull()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.CredentialAttribute()]
$Credential,
[Parameter()]
[ValidateNotNullOrEmpty()]
[Alias('DomainController')]
[System.String]
$Server
)
$restoreFilter = 'msDS-LastKnownRDN -eq "{0}" -and objectClass -eq "{1}" -and isDeleted -eq $true' -f
$Identity, $ObjectClass
Write-Verbose -Message ($script:localizedData.FindInRecycleBin -f $restoreFilter) -Verbose
<#
Using IsDeleted and IncludeDeletedObjects will mean that the cmdlet does not throw
any more, and simply returns $null instead
#>
$commonParams = Get-ADCommonParameters @PSBoundParameters
$getAdObjectParams = $commonParams.Clone()
$getAdObjectParams.Remove('Identity')
$getAdObjectParams['Filter'] = $restoreFilter
$getAdObjectParams['IncludeDeletedObjects'] = $true
$getAdObjectParams['Properties'] = @('whenChanged')
# If more than one object is returned, we pick the one that was changed last.
$restorableObject = Get-ADObject @getAdObjectParams |
Sort-Object -Descending -Property 'whenChanged' |
Select-Object -First 1
$restoredObject = $null
if ($restorableObject)
{
Write-Verbose -Message ($script:localizedData.FoundRestoreTargetInRecycleBin -f
$Identity, $ObjectClass, $restorableObject.DistinguishedName) -Verbose
try
{
$restoreParams = $commonParams.Clone()
$restoreParams['PassThru'] = $true
$restoreParams['ErrorAction'] = 'Stop'
$restoreParams['Identity'] = $restorableObject.DistinguishedName
$restoredObject = Restore-ADObject @restoreParams
Write-Verbose -Message ($script:localizedData.RecycleBinRestoreSuccessful -f
$Identity, $ObjectClass) -Verbose
}
catch [Microsoft.ActiveDirectory.Management.ADException]
{
# After Get-TargetResource is through, only one error can occur here: Object parent does not exist
$errorMessage = $script:localizedData.RecycleBinRestoreFailed -f $Identity, $ObjectClass
New-InvalidOperationException -Message $errorMessage -ErrorRecord $_
}
}
else
{
Write-Verbose -Message ($script:localizedData.NoObjectFoundInRecycleBin) -Verbose
}