Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Commit 46060a4

Browse files
v4.4.0
1 parent b473de2 commit 46060a4

26 files changed

+700
-127
lines changed

Configurations/Implement-Windows-Server-DHCP-2016/VMConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $credential = New-Object -typename Pscredential -ArgumentList Administrator, $se
2424

2525
#region DSC Resources
2626
Import-DSCresource -ModuleName "PSDesiredStateConfiguration" -ModuleVersion "1.1"
27-
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.9.0.0"
27+
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.10.0.0"
2828
Import-DSCResource -modulename "xActiveDirectory" -ModuleVersion "3.0.0.0"
2929
Import-DSCResource -modulename "xComputerManagement" -ModuleVersion "4.1.0.0"
3030
Import-DSCResource -modulename "xNetworking" -ModuleVersion "5.7.0.0"

Configurations/Implement-Windows-Server-DHCP-2016/VMConfigurationData.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ WIN10_x86_Enterprise_LTSC_EN_Eval Windows 10 32bit Enterprise LTSC 2019 En
204204
@{ Name = 'xNetworking'; RequiredVersion = '5.7.0.0'; Provider = 'PSGallery'; },
205205
@{ Name = 'xDhcpServer'; RequiredVersion = '2.0.0.0'; Provider = 'PSGallery'; },
206206
@{ Name = 'xWindowsUpdate' ; RequiredVersion = '2.8.0.0'; Provider = 'PSGallery'; },
207-
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.9.0.0'; },
208-
@{ Name = 'xPendingReboot'; RequiredVersion = '0.4.0.0'; },
209-
@{ Name = 'xADCSDeployment'; RequiredVersion = '1.4.0.0'; }
207+
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.10.0.0'; Provider = 'PSGallery'; },
208+
@{ Name = 'xPendingReboot'; RequiredVersion = '0.4.0.0'; Provider = 'PSGallery'; },
209+
@{ Name = 'xADCSDeployment'; RequiredVersion = '1.4.0.0'; Provider = 'PSGallery'; }
210210
);
211211
Resource = @(
212212
@{

Configurations/Jason-DSC-Env/VMConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Configuration AutoLab {
2929
Import-DSCResource -ModuleName 'xNetworking' -ModuleVersion '5.7.0.0'
3030
Import-DSCResource -ModuleName 'xDhcpServer' -ModuleVersion '2.0.0.0'
3131
Import-DSCResource -ModuleName 'xWindowsUpdate' -ModuleVersion '2.8.0.0'
32-
Import-DSCResource -ModuleName 'xPSDesiredStateConfiguration' -ModuleVersion '8.9.0.0'
32+
Import-DSCResource -ModuleName 'xPSDesiredStateConfiguration' -ModuleVersion '8.10.0.0'
3333
Import-DSCResource -ModuleName 'xPendingReboot' -ModuleVersion '0.4.0.0'
3434
Import-DSCResource -ModuleName 'xADCSDeployment' -ModuleVersion '1.4.0.0'
3535

Configurations/Jason-DSC-Env/VMConfigurationData.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ demonstrations and would need to be modified for your environment.
207207
@{ Name = 'xNetworking'; RequiredVersion = '5.7.0.0'; Provider = 'PSGallery'; },
208208
@{ Name = 'xDhcpServer'; RequiredVersion = '2.0.0.0'; Provider = 'PSGallery'; },
209209
@{ Name = 'xWindowsUpdate' ; RequiredVersion = '2.8.0.0'; Provider = 'PSGallery'; },
210-
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.9.0.0'; },
211-
@{ Name = 'xPendingReboot'; RequiredVersion = '0.4.0.0'; },
212-
@{ Name = 'xADCSDeployment'; RequiredVersion = '1.4.0.0'; }
210+
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.10.0.0'; Provider = 'PSGallery'; },
211+
@{ Name = 'xPendingReboot'; RequiredVersion = '0.4.0.0'; Provider = 'PSGallery'; },
212+
@{ Name = 'xADCSDeployment'; RequiredVersion = '1.4.0.0'; Provider = 'PSGallery'; }
213213

214214
);
215215
Resource = @(

Configurations/MultiRole/Instructions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ If you were instructed to use that configuration, this one should work for you.
55

66
The lab builds the following:
77

8-
* 1 DC (DC1)
9-
* 1 Server (S1)
10-
* 1 Nano (N1)
11-
* 1 Client with RSAT (Cli1)
8+
* 1 DC (DC1 - Windows Server 2016 Core)
9+
* 1 Server (S1 - Windows Server 2016 Core)
10+
* 1 Nano (N1 - Windows Server 2016 Nano)
11+
* 1 Client with RSAT (Cli1 - Windows 10 Enterprise)
1212

1313
## To get started:
1414

Configurations/PowerShellLab/VMConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Configuration AutoLab {
2424

2525
#region DSC Resources
2626
Import-DSCresource -ModuleName "PSDesiredStateConfiguration" -ModuleVersion "1.1"
27-
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.9.0.0"
27+
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.10.0.0"
2828
Import-DSCResource -modulename "xActiveDirectory" -ModuleVersion "3.0.0.0"
2929
Import-DSCResource -modulename "xComputerManagement" -ModuleVersion "4.1.0.0"
3030
Import-DSCResource -modulename "xNetworking" -ModuleVersion "5.7.0.0"

Configurations/PowerShellLab/VMConfigurationData.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ demonstrations and would need to be modified for your environment.
203203
@{ Name = 'xNetworking'; RequiredVersion = '5.7.0.0'; Provider = 'PSGallery'; },
204204
@{ Name = 'xDhcpServer'; RequiredVersion = '2.0.0.0'; Provider = 'PSGallery'; },
205205
@{ Name = 'xWindowsUpdate' ; RequiredVersion = '2.8.0.0'; Provider = 'PSGallery';},
206-
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.9.0.0'; },
206+
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.10.0.0'; },
207207
@{ Name = 'xPendingReboot'; RequiredVersion = '0.4.0.0'; Provider = 'PSGallery';},
208208
@{ Name = 'xADCSDeployment'; RequiredVersion = '1.4.0.0'; Provider = 'PSGallery';},
209209
@{ Name = 'xDnsServer';RequiredVersion = "1.15.0.0";Provider = 'PSGallery';},

Configurations/SingleServer/VMConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Configuration AutoLab {
77

88
#region DSC Resources
99
Import-DSCresource -ModuleName "PSDesiredStateConfiguration" -ModuleVersion "1.1"
10-
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.9.0.0"
10+
Import-DSCResource -modulename "xPSDesiredStateConfiguration" -ModuleVersion "8.10.0.0"
1111
Import-DSCResource -modulename "xComputerManagement" -ModuleVersion "4.1.0.0"
1212
Import-DSCResource -modulename "xNetworking" -ModuleVersion "5.7.0.0"
1313

Configurations/SingleServer/VMConfigurationData.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ demonstrations and would need to be modified for your environment.
120120
);
121121
DSCResource = @(
122122
## Download published version from the PowerShell Gallery or Github
123-
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.9.0.0'; },
123+
@{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.10.0.0'; Provider = 'PSGallery'; },
124124
@{ Name = 'xComputerManagement'; RequiredVersion = '4.1.0.0'; Provider = 'PSGallery'; },
125125
@{ Name = 'xNetworking'; RequiredVersion = '5.7.0.0'; Provider = 'PSGallery'; }
126126

Configurations/Windows10/Instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This lab builds the following:
44

5-
* 1 Workgroup joined Windows 10 Client with RSAT tools installed.
5+
* 1 Workgroup joined Windows 10 Client (Win10Ent) with RSAT tools installed.
66

77
It will also create a local user account with a password of `P@ssw0rd` using same name as the person running the configuration. In other words, it will use the value of `$env:username`.
88

0 commit comments

Comments
 (0)