-
Notifications
You must be signed in to change notification settings - Fork 141
/
MSFT_ADComputer.psm1
964 lines (803 loc) · 32.6 KB
/
MSFT_ADComputer.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
$script:resourceModulePath = Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent
$script:modulesFolderPath = Join-Path -Path $script:resourceModulePath -ChildPath 'Modules'
$script:localizationModulePath = Join-Path -Path $script:modulesFolderPath -ChildPath 'ActiveDirectoryDsc.Common'
Import-Module -Name (Join-Path -Path $script:localizationModulePath -ChildPath 'ActiveDirectoryDsc.Common.psm1')
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_ADComputer'
<#
A property map that maps the resource parameters to the corresponding
Active Directory computer account object attribute.
#>
$script:computerObjectPropertyMap = @(
@{
ParameterName = 'ComputerName'
PropertyName = 'CN'
},
@{
ParameterName = 'Location'
},
@{
ParameterName = 'DnsHostName'
},
@{
ParameterName = 'ServicePrincipalNames'
PropertyName = 'ServicePrincipalName'
},
@{
ParameterName = 'UserPrincipalName'
},
@{
ParameterName = 'DisplayName'
},
@{
ParameterName = 'Path'
PropertyName = 'DistinguishedName'
},
@{
ParameterName = 'Description'
},
@{
ParameterName = 'Enabled'
},
@{
ParameterName = 'Manager'
PropertyName = 'ManagedBy'
},
@{
ParameterName = 'DistinguishedName'
ParameterType = 'Read'
PropertyName = 'DistinguishedName'
},
@{
ParameterName = 'SID'
ParameterType = 'Read'
}
)
<#
.SYNOPSIS
Returns the current state of the Active Directory computer account.
.PARAMETER ComputerName
Specifies the name of the Active Directory computer account to manage.
You can identify a computer by its distinguished name, GUID, security
identifier (SID) or Security Accounts Manager (SAM) account name.
.PARAMETER RequestFile
Specifies the full path to the Offline Domain Join Request file to create.
.PARAMETER EnabledOnCreation
Specifies if the computer account is created enabled or disabled.
By default the Enabled property of the computer account will be set to
the default value of the cmdlet New-ADComputer. This property is ignored
if the parameter RequestFile is specified in the same configuration.
This parameter does not enforce the property `Enabled`. To enforce the
property `Enabled` see the resource ADObjectEnabledState.
.PARAMETER DomainController
Specifies the Active Directory Domain Services instance to connect to perform the task.
Used by Get-ADCommonParameters and is returned as a common parameter.
.PARAMETER Credential
Specifies the user account credentials to use to perform the task.
Used by Get-ADCommonParameters and is returned as a common parameter.
.PARAMETER RestoreFromRecycleBin
Try to restore the organizational unit from the recycle bin before
creating a new one.
#>
function Get-TargetResource
{
[CmdletBinding()]
[OutputType([System.Collections.Hashtable])]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$ComputerName,
[Parameter()]
[ValidateNotNull()]
[System.String]
$RequestFile,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DomainController,
[Parameter()]
[ValidateNotNull()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.CredentialAttribute()]
$Credential,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$RestoreFromRecycleBin,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$EnabledOnCreation
)
Assert-Module -ModuleName 'ActiveDirectory' -ImportModule
<#
These are properties that have no corresponding property in a
Computer account object.
#>
$getTargetResourceReturnValue = @{
Ensure = 'Absent'
ComputerName = $null
Location = $null
DnsHostName = $null
ServicePrincipalNames = $null
UserPrincipalName = $null
DisplayName = $null
Path = $null
Description = $null
Enabled = $false
Manager = $null
DomainController = $DomainController
Credential = $Credential
RequestFile = $RequestFile
RestoreFromRecycleBin = $RestoreFromRecycleBin
EnabledOnCreation = $EnabledOnCreation
DistinguishedName = $null
SID = $null
SamAccountName = $null
}
$getADComputerResult = $null
try
{
<#
Create an array of the Active Directory Computer object property
names to retrieve from the Computer object.
#>
$computerObjectProperties = Convert-PropertyMapToObjectProperties -PropertyMap $script:computerObjectPropertyMap
<#
When the property ServicePrincipalName is read with Get-ADComputer
the property name must be 'ServicePrincipalNames', but when it is
written with Set-ADComputer the property name must be
'ServicePrincipalName'. This difference is handled here.
#>
$computerObjectProperties = @($computerObjectProperties |
Where-Object -FilterScript {
$_ -ne 'ServicePrincipalName'
})
$computerObjectProperties += @('ServicePrincipalNames')
Write-Verbose -Message ($script:localizedData.RetrievingComputerAccount -f $ComputerName)
$getADComputerParameters = Get-ADCommonParameters @PSBoundParameters
$getADComputerParameters['Properties'] = $computerObjectProperties
# If the computer account is not found Get-ADComputer will throw an error.
$getADComputerResult = Get-ADComputer @getADComputerParameters
Write-Verbose -Message ($script:localizedData.ComputerAccountIsPresent -f $ComputerName)
$getTargetResourceReturnValue['Ensure'] = 'Present'
$getTargetResourceReturnValue['ComputerName'] = $getADComputerResult.CN
$getTargetResourceReturnValue['Location'] = $getADComputerResult.Location
$getTargetResourceReturnValue['DnsHostName'] = $getADComputerResult.DnsHostName
$getTargetResourceReturnValue['ServicePrincipalNames'] = [System.String[]] $getADComputerResult.ServicePrincipalNames
$getTargetResourceReturnValue['UserPrincipalName'] = $getADComputerResult.UserPrincipalName
$getTargetResourceReturnValue['DisplayName'] = $getADComputerResult.DisplayName
$getTargetResourceReturnValue['Path'] = Get-ADObjectParentDN -DN $getADComputerResult.DistinguishedName
$getTargetResourceReturnValue['Description'] = $getADComputerResult.Description
$getTargetResourceReturnValue['Enabled'] = $getADComputerResult.Enabled
$getTargetResourceReturnValue['Manager'] = $getADComputerResult.ManagedBy
$getTargetResourceReturnValue['DomainController'] = $DomainController
$getTargetResourceReturnValue['Credential'] = $Credential
$getTargetResourceReturnValue['RequestFile'] = $RequestFile
$getTargetResourceReturnValue['RestoreFromRecycleBin'] = $RestoreFromRecycleBin
$getTargetResourceReturnValue['EnabledOnCreation'] = $EnabledOnCreation
$getTargetResourceReturnValue['DistinguishedName'] = $getADComputerResult.DistinguishedName
$getTargetResourceReturnValue['SID'] = $getADComputerResult.SID
$getTargetResourceReturnValue['SamAccountName'] = $getADComputerResult.SamAccountName
}
catch [Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException]
{
Write-Verbose -Message ($script:localizedData.ComputerAccountIsAbsent -f $ComputerName)
}
catch
{
$errorMessage = $script:localizedData.FailedToRetrieveComputerAccount -f $ComputerName
New-InvalidOperationException -Message $errorMessage -ErrorRecord $_
}
return $getTargetResourceReturnValue
}
<#
.SYNOPSIS
Determines if the Active Directory computer account is in the desired state.
.PARAMETER ComputerName
Specifies the name of the Active Directory computer account to manage.
You can identify a computer by its distinguished name, GUID, security
identifier (SID) or Security Accounts Manager (SAM) account name.
.PARAMETER Ensure
Specifies whether the computer account is present or absent.
Valid values are 'Present' and 'Absent'. The default is 'Present'.
.PARAMETER UserPrincipalName
Specifies the UPN assigned to the computer account.
.PARAMETER DisplayName
Specifies the display name of the computer.
.PARAMETER Path
Specifies the X.500 path of the container where the computer is located.
.PARAMETER Location
Specifies the location of the computer, such as an office number.
.PARAMETER DnsHostName
Specifies the fully qualified domain name (FQDN) of the computer.
.PARAMETER ServicePrincipalNames
Specifies the service principal names for the computer account.
.PARAMETER Description
Specifies a description of the computer account.
.PARAMETER Manager
Specifies the user or group Distinguished Name that manages the computer
account. Valid values are the user's or group's DistinguishedName,
ObjectGUID, SID or SamAccountName.
.PARAMETER RequestFile
Specifies the full path to the Offline Domain Join Request file to create.
.PARAMETER DomainController
Specifies the Active Directory Domain Services instance to connect to perform the task.
.PARAMETER Credential
Specifies the user account credentials to use to perform the task.
.PARAMETER RestoreFromRecycleBin
Try to restore the organizational unit from the recycle bin before
creating a new one.
.PARAMETER EnabledOnCreation
Specifies if the computer account is created enabled or disabled.
By default the Enabled property of the computer account will be set to
the default value of the cmdlet New-ADComputer. This property is ignored
if the parameter RequestFile is specified in the same configuration.
This parameter does not enforce the property `Enabled`. To enforce the
property `Enabled` see the resource ADObjectEnabledState.
#>
function Test-TargetResource
{
[CmdletBinding()]
[OutputType([System.Boolean])]
param
(
# Common Name
[Parameter(Mandatory = $true)]
[System.String]
$ComputerName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[ValidateNotNull()]
[System.String]
$UserPrincipalName,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DisplayName,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Path,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Location,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DnsHostName,
[Parameter()]
[ValidateNotNull()]
[System.String[]]
$ServicePrincipalNames,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Manager,
[Parameter()]
[ValidateNotNull()]
[System.String]
$RequestFile,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DomainController,
[Parameter()]
[ValidateNotNull()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.CredentialAttribute()]
$Credential,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$RestoreFromRecycleBin,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$EnabledOnCreation
)
Write-Verbose -Message (
$script:localizedData.TestConfiguration -f $ComputerName
)
$getTargetResourceParameters = @{
ComputerName = $ComputerName
RequestFile = $RequestFile
DomainController = $DomainController
Credential = $Credential
RestoreFromRecycleBin = $RestoreFromRecycleBin
EnabledOnCreation = $EnabledOnCreation
}
# Need the @() around this to get a new array to enumerate.
@($getTargetResourceParameters.Keys) |
ForEach-Object {
if (-not $PSBoundParameters.ContainsKey($_))
{
$getTargetResourceParameters.Remove($_)
}
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
$testTargetResourceReturnValue = $true
if ($Ensure -eq 'Absent')
{
if ($getTargetResourceResult.Ensure -eq 'Present')
{
Write-Verbose -Message (
$script:localizedData.ComputerAccountShouldBeAbsent -f $ComputerName
)
$testTargetResourceReturnValue = $false
}
}
else
{
if ($getTargetResourceResult.Ensure -eq 'Absent')
{
Write-Verbose -Message (
$script:localizedData.ComputerAccountShouldBePresent -f $ComputerName
)
$testTargetResourceReturnValue = $false
}
else
{
<#
- Ignores the parameter ComputerName since we are not supporting
renaming a computer account.
- Ignore to compare the parameter ServicePrincipalNames here
because it needs a special comparison, so it is handled
afterwards.
- Ignores the Enabled property because it is not enforced in this
resource.
#>
$compareTargetResourceStateParameters = @{
CurrentValues = $getTargetResourceResult
DesiredValues = $PSBoundParameters
# This gives an array of properties to compare.
Properties = $script:computerObjectPropertyMap.ParameterName
# But these properties
IgnoreProperties = @(
'ComputerName'
'ServicePrincipalNames'
'Enabled'
)
}
$compareTargetResourceStateResult = Compare-ResourcePropertyState @compareTargetResourceStateParameters
if ($false -in $compareTargetResourceStateResult.InDesiredState)
{
$testTargetResourceReturnValue = $false
}
if ($PSBoundParameters.ContainsKey('ServicePrincipalNames'))
{
$testServicePrincipalNamesParameters = @{
ExistingServicePrincipalNames = $getTargetResourceResult.ServicePrincipalNames
ServicePrincipalNames = $ServicePrincipalNames
}
$testTargetResourceReturnValue = Test-ServicePrincipalNames @testServicePrincipalNamesParameters
}
}
}
if ($testTargetResourceReturnValue)
{
Write-Verbose -Message ($script:localizedData.ComputerAccountInDesiredState -f $ComputerName)
}
else
{
Write-Verbose -Message ($script:localizedData.ComputerAccountNotInDesiredState -f $ComputerName)
}
return $testTargetResourceReturnValue
}
<#
.SYNOPSIS
Creates, removes or modifies the Active Directory computer account.
.PARAMETER ComputerName
Specifies the name of the Active Directory computer account to manage.
You can identify a computer by its distinguished name, GUID, security
identifier (SID) or Security Accounts Manager (SAM) account name.
.PARAMETER Ensure
Specifies whether the computer account is present or absent.
Valid values are 'Present' and 'Absent'. The default is 'Present'.
.PARAMETER UserPrincipalName
Specifies the UPN assigned to the computer account.
.PARAMETER DisplayName
Specifies the display name of the computer.
.PARAMETER Path
Specifies the X.500 path of the container where the computer is located.
.PARAMETER Location
Specifies the location of the computer, such as an office number.
.PARAMETER DnsHostName
Specifies the fully qualified domain name (FQDN) of the computer.
.PARAMETER ServicePrincipalNames
Specifies the service principal names for the computer account.
.PARAMETER Description
Specifies a description of the computer account.
.PARAMETER Manager
Specifies the user or group Distinguished Name that manages the computer
account. Valid values are the user's or group's DistinguishedName,
ObjectGUID, SID or SamAccountName.
.PARAMETER RequestFile
Specifies the full path to the Offline Domain Join Request file to create.
.PARAMETER DomainController
Specifies the Active Directory Domain Services instance to connect to perform the task.
.PARAMETER Credential
Specifies the user account credentials to use to perform the task.
.PARAMETER RestoreFromRecycleBin
Try to restore the organizational unit from the recycle bin before
creating a new one.
.PARAMETER EnabledOnCreation
Specifies if the computer account is created enabled or disabled.
By default the Enabled property of the computer account will be set to
the default value of the cmdlet New-ADComputer. This property is ignored
if the parameter RequestFile is specified in the same configuration.
This parameter does not enforce the property `Enabled`. To enforce the
property `Enabled` see the resource ADObjectEnabledState.
#>
function Set-TargetResource
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[System.String]
$ComputerName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[ValidateNotNull()]
[System.String]
$UserPrincipalName,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DisplayName,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Path,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Location,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DnsHostName,
[Parameter()]
[ValidateNotNull()]
[System.String[]]
$ServicePrincipalNames,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNull()]
[System.String]
$Manager,
[Parameter()]
[ValidateNotNull()]
[System.String]
$RequestFile,
[Parameter()]
[ValidateNotNull()]
[System.String]
$DomainController,
[Parameter()]
[ValidateNotNull()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.CredentialAttribute()]
$Credential,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$RestoreFromRecycleBin,
[Parameter()]
[ValidateNotNull()]
[System.Boolean]
$EnabledOnCreation
)
$getTargetResourceParameters = @{
ComputerName = $ComputerName
RequestFile = $RequestFile
DomainController = $DomainController
Credential = $Credential
RestoreFromRecycleBin = $RestoreFromRecycleBin
EnabledOnCreation = $EnabledOnCreation
}
# Need the @() around this to get a new array to enumerate.
@($getTargetResourceParameters.Keys) |
ForEach-Object {
if (-not $PSBoundParameters.ContainsKey($_))
{
$getTargetResourceParameters.Remove($_)
}
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
if ($Ensure -eq 'Present')
{
if ($getTargetResourceResult.Ensure -eq 'Absent')
{
$restorationSuccessful = $false
# Try to restore computer account from recycle bin if it exists.
if ($RestoreFromRecycleBin)
{
Write-Verbose -Message (
$script:localizedData.RestoringComputerAccount -f $ComputerName
)
$restoreADCommonObjectParameters = Get-ADCommonParameters @PSBoundParameters
$restoreADCommonObjectParameters['ObjectClass'] = 'Computer'
$restoreADCommonObjectParameters['ErrorAction'] = 'Stop'
$restorationSuccessful = Restore-ADCommonObject @restoreADCommonObjectParameters
}
if (-not $RestoreFromRecycleBin -or ($RestoreFromRecycleBin -and -not $restorationSuccessful))
{
<#
The computer account does not exist, or the computer account
was not present in recycle bin, so the computer account needs
to be created.
#>
if ($RequestFile)
{
<#
Use DJOIN to create the computer account as well as the
Offline Domain Join (ODJ) request file.
#>
# This should only be performed on a Domain Member, so detect the Domain Name.
$domainName = Get-DomainName
Write-Verbose -Message (
$script:localizedData.CreateOfflineDomainJoinRequest -f $RequestFile, $ComputerName, $domainName
)
$dJoinArguments = @(
'/PROVISION'
'/DOMAIN',
$domainName
'/MACHINE',
$ComputerName
)
if ($PSBoundParameters.ContainsKey('Path'))
{
$dJoinArguments += @(
'/MACHINEOU',
$Path
)
}
if ($PSBoundParameters.ContainsKey('DomainController'))
{
$dJoinArguments += @(
'/DCNAME',
$DomainController
)
}
$dJoinArguments += @(
'/SAVEFILE',
$RequestFile
)
$startProcessParameters = @{
FilePath = 'djoin.exe'
ArgumentList = $dJoinArguments
Timeout = 300
}
$dJoinProcessExitCode = Start-ProcessWithTimeout @startProcessParameters
if ($dJoinProcessExitCode -ne 0)
{
$errorMessage = $script:localizedData.FailedToCreateOfflineDomainJoinRequest -f $ComputerName, $dJoinProcessExitCode
New-InvalidOperationException -Message $errorMessage
}
else
{
Write-Verbose -Message (
$script:localizedData.CreatedOfflineDomainJoinRequestFile -f $RequestFile
)
}
}
else
{
$newADComputerParameters = Get-ADCommonParameters @PSBoundParameters -UseNameParameter
if ($PSBoundParameters.ContainsKey('Path'))
{
Write-Verbose -Message (
$script:localizedData.CreateComputerAccountInPath -f $ComputerName, $Path
)
$newADComputerParameters['Path'] = $Path
}
else
{
Write-Verbose -Message (
$script:localizedData.CreateComputerAccount -f $ComputerName
)
}
<#
If the parameter EnabledOnCreation is specified, then the
property Enabled is set to that value.
#>
if ($PSBoundParameters.ContainsKey('EnabledOnCreation'))
{
if ($EnabledOnCreation)
{
Write-Verbose -Message ($script:localizedData.EnabledComputerAccount -f $ComputerName)
}
else
{
Write-Verbose -Message ($script:localizedData.DisabledComputerAccount -f $ComputerName)
}
$newADComputerParameters['Enabled'] = $EnabledOnCreation
}
New-ADComputer @newADComputerParameters
}
}
<#
Now retrieve the newly created computer account so the other
properties can be set if specified.
#>
$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
}
<#
- Ignores the parameter ComputerName since we are not supporting
renaming a computer account.
- Ignore to compare the parameter ServicePrincipalNames here
because it needs a special comparison, so it is handled
afterwards.
- Ignores the Enabled property because it is not enforced in this
resource.
#>
$compareTargetResourceStateParameters = @{
CurrentValues = $getTargetResourceResult
DesiredValues = $PSBoundParameters
# This gives an array of properties to compare.
Properties = $script:computerObjectPropertyMap.ParameterName
# But these properties
IgnoreProperties = @(
'ComputerName'
'ServicePrincipalNames'
'Enabled'
)
}
$compareTargetResourceStateResult = Compare-ResourcePropertyState @compareTargetResourceStateParameters
if ($PSBoundParameters.ContainsKey('ServicePrincipalNames'))
{
$testServicePrincipalNamesParameters = @{
ExistingServicePrincipalNames = $getTargetResourceResult.ServicePrincipalNames
ServicePrincipalNames = $ServicePrincipalNames
}
$compareTargetResourceStateResult += @{
ParameterName = 'ServicePrincipalNames'
Expected = $testServicePrincipalNamesParameters.ServicePrincipalNames
Actual = $testServicePrincipalNamesParameters.ExistingServicePrincipalNames
InDesiredState = Test-ServicePrincipalNames @testServicePrincipalNamesParameters
}
}
$commonParameters = Get-ADCommonParameters @PSBoundParameters
if ($compareTargetResourceStateResult.Where( { $_.ParameterName -eq 'Path' -and -not $_.InDesiredState }))
{
<#
Must move the computer account since we can't simply
update the DistinguishedName property
It does not work moving the computer account using the
SamAccountName as the identity, so using the property
DistinguishedName instead.
#>
$moveADObjectParameters = $commonParameters.Clone()
$moveADObjectParameters['Identity'] = $getTargetResourceResult.DistinguishedName
Write-Verbose -Message (
$script:localizedData.MovingComputerAccount -f $ComputerName, $getTargetResourceResult.Path, $Path
)
Move-ADObject @moveADObjectParameters -TargetPath $Path
}
$replaceComputerProperties = @{ }
$removeComputerProperties = @{ }
# Get all properties, other than Path, that is not in desired state.
$propertiesNotInDesiredState = $compareTargetResourceStateResult |
Where-Object -FilterScript {
$_.ParameterName -ne 'Path' -and -not $_.InDesiredState
}
foreach ($property in $propertiesNotInDesiredState)
{
$computerAccountPropertyName = ($script:computerObjectPropertyMap |
Where-Object -FilterScript {
$_.ParameterName -eq $property.ParameterName
}).PropertyName
if (-not $computerAccountPropertyName)
{
$computerAccountPropertyName = $property.ParameterName
}
if ($property.Expected)
{
Write-Verbose -Message (
$script:localizedData.UpdatingComputerAccountProperty -f $computerAccountPropertyName, ($property.Expected -join ''',''')
)
# Replace the current value.
$replaceComputerProperties[$computerAccountPropertyName] = $property.Expected
}
else
{
Write-Verbose -Message (
$script:localizedData.RemovingComputerAccountProperty -f $property.ParameterName, ($property.Actual -join ''',''')
)
# Remove the current value since the desired value is empty or nothing.
$removeComputerProperties[$computerAccountPropertyName] = $property.Actual
}
}
$setADComputerParameters = $commonParameters.Clone()
# Set-ADComputer is only called if we have something to change.
if ($replaceComputerProperties.Count -gt 0 -or $removeComputerProperties.Count -gt 0)
{
if ($replaceComputerProperties.Count -gt 0)
{
$setADComputerParameters['Replace'] = $replaceComputerProperties
}
if ($removeComputerProperties.Count -gt 0)
{
$setADComputerParameters['Remove'] = $removeComputerProperties
}
Set-DscADComputer -Parameters $setADComputerParameters
Write-Verbose -Message (
$script:localizedData.UpdatedComputerAccount -f $ComputerName
)
}
}
elseif ($Ensure -eq 'Absent' -and $getTargetResourceResult.Ensure -eq 'Present')
{
# User exists and needs removing
Write-Verbose -Message (
$script:localizedData.RemovingComputerAccount -f $ComputerName
)
$removeADComputerParameters = Get-ADCommonParameters @PSBoundParameters
$removeADComputerParameters['Confirm'] = $false
Remove-ADComputer @removeADComputerParameters |
Out-Null
}
}
<#
.SYNOPSIS
This evaluates the service principal names current state against the
desired state.
.PARAMETER ExistingServicePrincipalNames
An array of existing service principal names that should be compared
against the array in parameter ServicePrincipalNames.
.PARAMETER ServicePrincipalNames
An array of the desired service principal names that should be compared
against the array in parameter ExistingServicePrincipalNames.
#>
function Test-ServicePrincipalNames
{
param
(
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[System.String[]]
$ExistingServicePrincipalNames,
[Parameter(Mandatory = $true)]
[AllowEmptyCollection()]
[AllowEmptyString()]
[System.String[]]
$ServicePrincipalNames
)
$testServicePrincipalNamesReturnValue = $true
$testMembersParameters = @{
ExistingMembers = $ExistingServicePrincipalNames
Members = $ServicePrincipalNames
}
if (-not (Test-Members @testMembersParameters))
{
Write-Verbose -Message (
$script:localizedData.ServicePrincipalNamesNotInDesiredState `
-f ($ExistingServicePrincipalNames -join ','), ($ServicePrincipalNames -join ',')
)
$testServicePrincipalNamesReturnValue = $false
}
else
{
Write-Verbose -Message (
$script:localizedData.ServicePrincipalNamesInDesiredState
)
}
return $testServicePrincipalNamesReturnValue
}
Export-ModuleMember -Function *-TargetResource