-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #504 from microsoft/dev
Dev
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ $LabConfig=@{ DomainAdminName='LabAdmin'; AdminPassword='LS1setup!'; Prefix = 'M | |
# Or Windows Server 2019 | ||
#1..4 | ForEach-Object {$VMNames="S2D"; $LABConfig.VMs += @{ VMName = "$VMNames$_" ; Configuration = 'S2D' ; ParentVHD = 'Win2019Core_G2.vhdx'; SSDNumber = 0; SSDSize=800GB ; HDDNumber = 12; HDDSize= 4TB ; MemoryStartupBytes= 512MB }} | ||
|
||
|
||
### HELP ### | ||
|
||
#If you need more help or different configuration options, ping us at [email protected] or [email protected] | ||
|
@@ -239,6 +238,18 @@ $LabConfig=@{ DomainAdminName='LabAdmin'; AdminPassword='LS1setup!'; Prefix = 'M | |
AdditionalNetworks (Optional) | ||
$True - Additional networks (configured in AdditonalNetworkConfig) are added | ||
AdditionalNetworkAdapters (Optional) - Hashtable or array if multiple network adapters should be connected to this virtual machine | ||
@{ | ||
VirtualSwitchName (Mandatory) - Name of the Hyper-V Switch to witch the adapter will be connected | ||
Mac (Optional) - Static MAC address of the interface otherwise default will be generated | ||
VlanId (Optional) - VLAN ID for this adapter | ||
IpConfiguration (Optional) - DHCP or hastable with specific IP configuration | ||
@{ | ||
IpAddress (Mandatory) - Static IP Address that would be injected to the OS | ||
Subnet (Mandatory) | ||
} | ||
} | ||
DSCMode (Optional) | ||
If 'Pull', VMs will be configured to Pull config from DC. | ||
|