Configurations/Windows10/VMConfigurationData.psd1
<# Notes:
Disclaimer This example code is provided without copyright and AS IS. It is free for you to use and modify. Note: These demos should not be run as a script. These are the commands that I use in the demonstrations and would need to be modified for your environment. #> @{ AllNodes = @( @{ NodeName = '*' # Lab Password - assigned to Administrator and Users LabPassword = 'P@ssw0rd' PSDscAllowPlainTextPassword = $true PSDscAllowDomainUser = $true # Common networking InterfaceAlias = 'Ethernet' DefaultGateway = '192.168.3.1' SubnetMask = 24 AddressFamily = 'IPv4' IPNetwork = '192.168.3.0/24' IPNatName = 'LabNat' DnsServerAddress = '8.8.8.8' # Firewall settings to enable FirewallRuleNames = @( 'FPS-ICMP4-ERQ-In'; 'FPS-ICMP6-ERQ-In'; 'FPS-SMB-In-TCP' ) # Lability default node settings Lability_SwitchName = 'LabNet' Lability_ProcessorCount = 1 Lability_MinimumMemory = 1GB SecureBoot = $false Lability_Media = '2016_x64_Standard_Core_EN_Eval' <# Id Description -- ----------- 2019_x64_Standard_EN_Eval Windows Server 2019 Standard 64bit English Evaluation with Desktop Experience 2019_x64_Standard_EN_Core_Eval Windows Server 2019 Standard 64bit English Evaluation 2019_x64_Datacenter_EN_Eval Windows Server 2019 Datacenter 64bit English Evaluation with Desktop Experience 2019_x64_Datacenter_EN_Core_Eval Windows Server 2019 Datacenter Evaluation in Core mode 2016_x64_Standard_EN_Eval Windows Server 2016 Standard 64bit English Evaluation 2016_x64_Standard_Core_EN_Eval Windows Server 2016 Standard Core 64bit English Evaluation 2016_x64_Datacenter_EN_Eval Windows Server 2016 Datacenter 64bit English Evaluation 2016_x64_Datacenter_Core_EN_Eval Windows Server 2016 Datacenter Core 64bit English Evaluation 2016_x64_Standard_Nano_EN_Eval Windows Server 2016 Standard Nano 64bit English Evaluation 2016_x64_Datacenter_Nano_EN_Eval Windows Server 2016 Datacenter Nano 64bit English Evaluation 2012R2_x64_Standard_EN_Eval Windows Server 2012 R2 Standard 64bit English Evaluation 2012R2_x64_Standard_EN_V5_Eval Windows Server 2012 R2 Standard 64bit English Evaluation with WMF 5 2012R2_x64_Standard_EN_V5_1_Eval Windows Server 2012 R2 Standard 64bit English Evaluation with WMF 5.1 2012R2_x64_Standard_Core_EN_Eval Windows Server 2012 R2 Standard Core 64bit English Evaluation 2012R2_x64_Standard_Core_EN_V5_Eval Windows Server 2012 R2 Standard Core 64bit English Evaluation with WMF 5 2012R2_x64_Standard_Core_EN_V5_1_Eval Windows Server 2012 R2 Standard Core 64bit English Evaluation with WMF 5.1 2012R2_x64_Datacenter_EN_Eval Windows Server 2012 R2 Datacenter 64bit English Evaluation 2012R2_x64_Datacenter_EN_V5_Eval Windows Server 2012 R2 Datacenter 64bit English Evaluation with WMF 5 2012R2_x64_Datacenter_EN_V5_1_Eval Windows Server 2012 R2 Datacenter 64bit English Evaluation with WMF 5.1 2012R2_x64_Datacenter_Core_EN_Eval Windows Server 2012 R2 Datacenter Core 64bit English Evaluation 2012R2_x64_Datacenter_Core_EN_V5_Eval Windows Server 2012 R2 Datacenter Core 64bit English Evaluation with WMF 5 2012R2_x64_Datacenter_Core_EN_V5_1_Eval Windows Server 2012 R2 Datacenter Core 64bit English Evaluation with WMF 5.1 WIN81_x64_Enterprise_EN_Eval Windows 8.1 64bit Enterprise English Evaluation WIN81_x64_Enterprise_EN_V5_Eval Windows 8.1 64bit Enterprise English Evaluation with WMF 5 WIN81_x64_Enterprise_EN_V5_1_Eval Windows 8.1 64bit Enterprise English Evaluation with WMF 5.1 WIN81_x86_Enterprise_EN_Eval Windows 8.1 32bit Enterprise English Evaluation WIN81_x86_Enterprise_EN_V5_Eval Windows 8.1 32bit Enterprise English Evaluation with WMF 5 WIN81_x86_Enterprise_EN_V5_1_Eval Windows 8.1 32bit Enterprise English Evaluation with WMF 5.1 WIN10_x64_Enterprise_EN_Eval Windows 10 64bit Enterprise 1903 English Evaluation WIN10_x86_Enterprise_EN_Eval Windows 10 32bit Enterprise 1903 English Evaluation WIN10_x64_Enterprise_LTSC_EN_Eval Windows 10 64bit Enterprise LTSC 2019 English Evaluation WIN10_x86_Enterprise_LTSC_EN_Eval Windows 10 32bit Enterprise LTSC 2019 English Evaluation #> } <# Available Roles for computers DC = Domain Controller DHCP = Dynamic Host Configuration Protocol ADCS = Active Directory Certificate SErvices - plus autoenrollment GPO's and DSC and web server certs Web = Basic web server RSAT = Remote Server Administration Tools for the client RDP = enables RDP and opens up required firewall rules DomainJoin = joins a computer to the domain #> @{ NodeName = 'Win10Ent' IPAddress = '192.168.3.101' Role = @('RSAT','RDP') Lability_ProcessorCount = 2 Lability_MinimumMemory = 2GB Lability_Media = 'WIN10_x64_Enterprise_EN_Eval' Lability_BootOrder = 20 Lability_timeZone = 'Central Standard Time' #[System.TimeZoneInfo]::GetSystemTimeZones() Lability_Resource = @() } ); NonNodeData = @{ Lability = @{ # EnvironmentPrefix = 'PS-GUI-' # this will prefix the VM names Network = @( # Virtual switch in Hyper-V @{ Name = 'LabNet'; Type = 'Internal'; NetAdapterName = 'Ethernet'; AllowManagementOS = $true; } ); DSCResource = @( ## Download published version from the PowerShell Gallery or Github @{ Name = 'xComputerManagement'; RequiredVersion = '1.8.0.0'; Provider = 'PSGallery'; }, @{ Name = 'xNetworking'; RequiredVersion = '5.7.0.0'; Provider = 'PSGallery'; }, @{ Name = 'xWindowsUpdate' ; RequiredVersion = '2.8.0.0'; Provider = 'PSGallery'; }, @{ Name = 'xPSDesiredStateConfiguration'; RequiredVersion = '8.9.0.0'; Provider = 'PSGallery'}, @{ Name = 'xPendingReboot'; RequiredVersion = '0.3.0.0'; Provider = 'PSGallery'} ); Resource = @( @{ Id = 'Win10RSAT' Filename = 'WindowsTH-RSAT_WS2016-x64.msu' Uri = 'https://download.microsoft.com/download/1/D/8/1D8B5022-5477-4B9A-8104-6A71FF9D98AB/WindowsTH-RSAT_WS2016-x64.msu' Expand = $false #DestinationPath = '\software' # Default is resources folder } ); }; }; }; |