-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPowershell DSC 1.ps1
779 lines (610 loc) · 19.5 KB
/
Powershell DSC 1.ps1
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
Get-CimInstance -namespace root/microsoft/windows -ClassName __NAMESPACE
get-cimclass -Namespace root/microsoft/windows/DesiredStateConfiguration -ClassName MSFT_* | fw
get-cimclass -Namespace root/microsoft/windows/DesiredStateConfiguration -ClassName MSFT_DSCmetaconfiguration
get-cimclass -Namespace root/microsoft/windows/DesiredStateConfiguration -ClassName MSFT_DSCLOcalConfigurationmanager
Get-DscConfiguration
ApplyOnly
ApplyandMonitor
ApplyaAutoCorrect
Get-DscLocalConfigurationManager
#Anatomy of the Configuration Docs
Configuration ConfigurationName
{
#Module import using Import-DscResource
#This has different possible parameters
Import-DscResource -ModuleName ModuleName
#Optional Node block with one or more node names
Node @(NodeNameArray) #Or a string literal
{
#One or more resource instances
ResourceName ResourceInstanceName
{
KeyProperty = Value
AnotherProperty = AnotherValue
}
}
}
#Finding and Installing DSC Resource Modules
#WMF 5.1
get-command -Module Powershellget
install-module -name PowershellGet -force
find-module
find-dscresource
get-module -ListAvailable
Find-Module -Includes DscResource
Find-Module -name cWindowsOS | select -ExpandProperty Additionalmetadata
Find-Module -DscResource CDiskImage
Find-DscResource -ModuleName xNetworking -Name xHostsfile
Find-DscResource -name cDiskImage -ModuleName cWindowsOs -AllVersions
use -requiredversion
Find-Module -Name xNetworking | install-module -force
${env:ProgramFiles}\WindowsPowerShell\Modules.
Install-Module -Name PsDscResources -Force
Save-Module -Name PSDscResources -Path C:\Modules -Force
Configuration FirstConfiguration
{
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node localhost
{
Archive FirstArchiveConfiguration
{
Path = 'C:\Scripts\test.zip'
Destination = 'C:\Demo'
Ensure = 'Present'
}
}
}
FirstConfiguration
Configuration FirstConfiguration
{
Import-DscResource -ModuleName PSDscResources
Node localhost
{
Archive FirstArchiveConfiguration
{
Path = 'C:\Scripts\test.zip'
Destination = 'C:\Demo'
Ensure = 'Present'
}
}
}
Therefore, when you use the -Name parameter, it is recommended that you always
use the -ModuleName parameter to make it faster for the parser to find the right module
for you.
#check the different Module version
Configuration FirstConfiguration
{
Import-DscResource -Name xHostsFile -ModuleName xNetworking
xHostsFile HostsFileConfiguration
{
IPAddress = '10.0.0.1'
HostName = 'TestHost10'
}
}
FirstConfiguration
Specifying ModuleName and ModuleVersion is always the best practice
Import-DscResource -ModuleName @{ModuleName='xNetworking';RequiredVersion='5.0.0.0'}, @{ModuleName='PSDscResources';ModuleVersion='2.8.0.0'}
Get-DscResource -Name xHostsFile -Module xNetworking -Syntax
Get-DscResource -Name xHostsFile -Module xNetworking | Select-Object
-ExpandProperty Properties
Configuration DemoGroupConfiguration
{
Import-DscResource -ModuleName PSDscResources
Node @('S16-01','S16-02')
{
User DemoGroup
{
GroupName = 'DemoGroup'
Description = 'Demo Group'
Ensure = 'Present'
}
}
}
DemoGroupConfiguration -OutputPath C:\DemoGroupConfiguration -Verbose
start-dscconfiguration -path .\ -wait -verbosr -force
Invoke-Command -ComputerName S16-01, S16-02 -ScriptBlock { Install-Module
-Name PSDscResources -RequiredVersion 2.8.0.0 -Force } -Verbose
Invoke-Command -ComputerName S16-01, S16-02 -ScriptBlock { Get-Module -Name
PSDscResources -ListAvailable } -Verbose
Configuration DemoGroupConfiguration
{
param (
[Parameter(Mandatory)]
[String]
$GroupName,
[Parameter(Mandatory)]
[String]
$Description,
[Parameter()]
[String[]] $Nodes = 'localhost'
)
Import-DscResource -ModuleName PSDscResources
Node $Nodes
{
Group DemoGroup
{
GroupName = $GroupName
Description = $Description
Ensure = 'Present'
}
}
}
DemoGroupConfiguration -OutputPath C:\DemoGroupConfiguration `
-GroupName 'DemoGroup' `
-Description 'Demo Group' `
-Nodes 'S16-01','S16-02
Configuration DependentConfigurationDemo
{
Import-DscResource -ModuleName PSDscResources -Name Registry
Node S16-01
{
File SetupScript
{
DestinationPath = 'C:\Scripts\setup.cmd'
Contents = 'C:\Windows\System32\Sysprep.exe /oobe /generalize /
shutdown'
Type = 'File'
Ensure = 'Present'
DependsOn = '[Registry]OOBEInProgress', '[Registry]SetupType'
}
Registry OOBEInProgress
{
Key = 'HKEY_LOCAL_MACHINE\SYSTEM\Setup'
ValueName = 'OOBEInProgress'
ValueData = 0
ValueType = 'DWord'
Ensure = 'Present'
}
Registry SetupType
{
Key = 'HKEY_LOCAL_MACHINE\SYSTEM\Setup'
ValueName = 'SetupType'
ValueData = 0
ValueType = 'DWord'
Ensure = 'Present'
}
}
}
Configuration FileCopyConfiguration
{
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node S16-01
{
File FileCopyDemo
{
SourcePath = '\\S16-JB\Share\Unattend.xml'
DestinationPath = 'C:\Scripts\Unattend.xml'
Type = 'File'
Force = $true
}
}
}
FileCopyConfiguration
Configuration DSCRunDemo
{
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node S16-01
{
Script DSCRunDemo
{
SetScript =
{
Write-Verbose -Message $(whoami)
}
TestScript =
{
return $false
}
GetScript =
{
return @{}
}
}
}
}
DSCRunDemo -OutputPath C:\DemoGroupConfiguration -Verbose
start-dscconfiguration -path .\ -wait -verbose -force
Configuration FileCopyConfiguration
{
Param
(
[Parameter(Mandatory)]
[pscredential] $Credential
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node S16-01
{
File FileCopyDemo
{
SourcePath = '\\S16-JB\Share\Unattend.xml'
DestinationPath = 'C:\Scripts\Unattend.xml'
Type = 'File'
Credential = $Credential Force = $true
}
}
}
FileCopyConfiguration -Credential (Get-Credential)
#This shoukd give an error
(get-command -name FileCopyConfiguration | select -Expandproperty parameters)['ConfigurationData']
$configurationData =
@{
AllNodes = @()
EnvironmentData = ""
}
$configurationData =
@{
AllNodes =
@(
@{
NodeName = 'S16-01'
SourceFile = '\\S16-JB\Share\S16-01.xml'
DestinationFile = 'C:\Scripts\Unattend.xml'
},
@{
NodeName = 'S16-02'
SourceFile = '\\S16-JB\Share\S16-02.xml'
DesitnationFile = 'C:\Scripts\Unattend.xml'
}
)
}
Configuration FileCopyConfiguration
{
Param
(
[Parameter(Mandatory)]
[pscredential] $Credential
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node $AllNodes.NodeName
{
File FileCopyDemo
{
SourcePath = $Node.SourceFile
DestinationPath = $Node.Destinationfile
Type = 'File'
Credential = $Credential
Force = $true
}
}
}
FileCopyConfiguration -Credential (Get-Credential) -ConfigurationData
PSDscAllowPlainTextPassword to $true.
$config=@{
NodeName ='*'
DestinationFile ="C:\Scripts\Unattend.xml"
PsDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
}
#Using PSDscRunAsCredential
$configurationData =
@{
AllNodes =
@(
@{
NodeName = "S16-01"
PsDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
}
)
}
Configuration DSCRunDemo
{
Param
(
[Parameter(Mandatory)]
[pscredential] $Credential
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node $AllNodes.NodeName
{
Script DSCRunDemo1
{
SetScript =
{
Write-Verbose -Message $(whoami)
}
TestScript =
{
return $false
}
GetScript =
{
return @{}
}
PSDscRunAsCredential = $Credential
}
}
}
DSCRunDemo -configurationData $configurationData -Credential (Get-Credential)
# you might get an error in above configuration remove and use as PSDscRunAsCredential
DSCRunDemo -ConfigurationData $configurationData -PsDscRunAsCredential (Get-Credential)
start-dscconfiguration -path .\Dscdemo -wait -verbosr -force
#Using Certificates to Encrypt Credentials
Configuration MyDscConfiguration {
Node $AllNodes.Where{$_.Role -eq "WebServer"}.NodeName
{
WindowsFeature IISInstall {
Ensure = 'Present'
Name = 'Web-Server'
}
}
Node $AllNodes.Where{$_.Role -eq "VMHost"}.NodeName
{
WindowsFeature HyperVInstall {
Ensure = 'Present'
Name = 'Hyper-V'
}
}
}
$MyData =
@{
AllNodes =
@(
@{
NodeName = 'VM-1'
Role = 'WebServer'
},
@{
NodeName = 'VM-2'
Role = 'VMHost'
}
)
}
MyDscConfiguration -ConfigurationData $MyData
$MyData =
@{
AllNodes =
@(
@{
NodeName = “*”
LogPath = “C:\Logs”
},
@{
NodeName = “VM-1”
SiteContents = “C:\Site1”
SiteName = “Website1”
},
@{
NodeName = “VM-2”;
SiteContents = “C:\Site2”
SiteName = “Website2”
}
);
NonNodeData =
@{
ConfigFileContents = (Get-Content C:\Template\Config.xml)
}
}
configuration WebsiteConfig
{
Import-DscResource -ModuleName xWebAdministration -Name MSFT_xWebsite
node $AllNodes.NodeName
{
xWebsite Site
{
Name = $Node.SiteName
PhysicalPath = $Node.SiteContents
Ensure = “Present”
}
File ConfigFile
{
DestinationPath = $Node.SiteContents + “\\config.xml”
Contents = $ConfigurationData.NonNodeData.ConfigFileContents
}
}
}
configuration VersionTest
{
Import-DscResource -ModuleName (@{ModuleName='xFailOverCluster'; RequiredVersion='1.1'} )
Node 'localhost'
{
xCluster ClusterTest
{
Name = 'TestCluster'
StaticIPAddress = '10.0.0.3'
DomainAdministratorCredential = Get-Credential
}
}
}
Configuration ChangeCmdBackGroundColor
{
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node $AllNodes.NodeName
{
Registry CmdPath
{
Key = 'HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor'
ValueName = 'DefaultColor'
ValueData = '1F'
ValueType = 'DWORD'
Ensure = 'Present'
Force = $true
Hex = $true
PsDscRunAsCredential = Get-Credential
}
}
}
$configData = @{
AllNodes = @(
@{
NodeName = 'localhost';
PSDscAllowDomainUser = $true
CertificateFile = 'C:\publicKeys\targetNode.cer'
Thumbprint = '7ee7f09d-4be0-41aa-a47f-96b9e3bdec25'
}
)
}
ChangeCmdBackGroundColor -ConfigurationData $configData
Configuration JoinDomain
{
Import-DscResource -Module xComputerManagement, xActiveDirectory
Node myDC
{
WindowsFeature InstallAD
{
Ensure = 'Present'
Name = 'AD-Domain-Services'
}
xADDomain NewDomain
{
DomainName = 'Contoso.com'
DomainAdministratorCredential = (Get-Credential)
SafemodeAdministratorPassword = (Get-Credential)
DatabasePath = "C:\Windows\NTDS"
LogPath = "C:\Windows\NTDS"
SysvolPath = "C:\Windows\Sysvol"
}
}
Node myDomainJoinedServer
{
WaitForAll DC
{
ResourceName = '[xADDomain]NewDomain'
NodeName = 'MyDC'
RetryIntervalSec = 15
RetryCount = 30
}
xComputer JoinDomain
{
Name = 'myPC'
DomainName = 'Contoso.com'
Credential = (Get-Credential)
DependsOn ='[WaitForAll]DC'
}
}
}
#Prompt user for their credentials
#credentials will be unencrypted in the MOF
$promptedCreds = get-credential -Message "Please enter your credentials to generate a DSC MOF:"
# Store passwords in plaintext, in the document itself
# will also be stored in plaintext in the mof
$password = "ThisIsAPlaintextPassword" | ConvertTo-SecureString -asPlainText -Force
$username = "User1"
[PSCredential] $credential = New-Object System.Management.Automation.PSCredential($username,$password)
# DSC requires explicit confirmation before storing passwords insecurely
$ConfigurationData = @{
AllNodes = @(
@{
# The "*" means "all nodes named in ConfigData" so we don't have to repeat ourselves
NodeName="*"
PSDscAllowPlainTextPassword = $true
},
#however, each node still needs to be explicitly defined for "*" to have meaning
@{
NodeName = "TestMachine1"
},
#we can also use a property to define node-specific passwords, although this is no more secure
@{
NodeName = "TestMachine2";
UserName = "User2"
LocalPassword = "ThisIsYetAnotherPlaintextPassword"
}
)
}
configuration unencryptedPasswordDemo
{
Node "TestMachine1"
{
# We use the plaintext password to generate a new account
User User1
{
UserName = $username
Password = $credential
Description = "local account"
Ensure = "Present"
Disabled = $false
PasswordNeverExpires = $true
PasswordChangeRequired = $false
}
# We use the prompted password to add this account to the local admins group
Group addToAdmin
{
# Ensure the user exists before we add the user to a group
DependsOn = "[User]User1"
Credential = $promptedCreds
GroupName = "Administrators"
Ensure = "Present"
MembersToInclude = "User1"
}
}
Node "TestMachine2"
{
# Now we'll use a node-specific password to this machine
$password = $Node.LocalPass | ConvertTo-SecureString -asPlainText -Force
$username = $node.UserName
[PSCredential] $nodeCred = New-Object System.Management.Automation.PSCredential($username,$password)
User User2
{
UserName = $username
Password = $nodeCred
Description = "local account"
Ensure = "Present"
Disabled = $false
PasswordNeverExpires = $true
PasswordChangeRequired = $false
}
Group addToAdmin
{
Credential = $domain
GroupName = "Administrators"
DependsOn = "[User]User2"
Ensure = "Present"
MembersToInclude = "User2"
}
}
}
# We declared the ConfigurationData in a local variable, but we need to pass it in to our configuration function
# We need to invoke the configuration function we created to generate a MOF
unencryptedPasswordDemo -ConfigurationData $ConfigurationData
# We need to pass the MOF to the machines we named.
#-wait: doesn't use jobs so we get blocked at the prompt until the configuration is done
#-verbose: so we can see what's going on and catch any errors
#-force: for testing purposes, I run start-dscconfiguration frequently + want to make sure i'm
# not blocked by previous configurations that are still running
Start-DscConfiguration ./unencryptedPasswordDemo -verbose -wait -force
Configuration DomainCredentialExample
{
param
(
[PSCredential] $DomainCredential
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
node localhost
{
Group DomainUserToLocalGroup
{
GroupName = 'ApplicationAdmins'
MembersToInclude = 'contoso\alice'
Credential = $DomainCredential
}
}
}
$cred = Get-Credential -UserName contoso\genericuser -Message "Password please"
DomainCredentialExample -DomainCredential $cred
Configuration DomainCredentialExample
{
param
(
[PSCredential] $DomainCredential
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
node localhost
{
Group DomainUserToLocalGroup
{
GroupName = 'ApplicationAdmins'
MembersToInclude = 'contoso\alice'
Credential = $DomainCredential
}
}
}
$cd = @{
AllNodes = @(
@{
NodeName = 'localhost'
PSDscAllowPlainTextPassword = $true
}
)
}
$cred = Get-Credential -UserName contoso\genericuser -Message "Password please"
DomainCredentialExample -DomainCredential $cred -ConfigurationData $cd