Skip to content

Commit 1acfcda

Browse files
committed
quotes fix
1 parent 14a006b commit 1acfcda

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Scripts/LabConfig.ps1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ $LabConfig=@{ DomainAdminName='LabAdmin'; AdminPassword='LS1setup!'; Prefix = 'M
1616
#region Same as above, but with more explanation
1717
<#
1818
$LabConfig=@{
19-
DomainAdminName='LabAdmin'; # Used during 2_CreateParentDisks (no affect if changed after this step)
20-
AdminPassword='LS1setup!'; # Used during 2_CreateParentDisks. If changed after, it will break the functionality of 3_Deploy.ps1
21-
Prefix = 'MSLab-'; # (Optional) All VMs and vSwitch are created with this prefix, so you can identify the lab. If not specified, Lab folder name is used
22-
SwitchName = 'LabSwitch'; # (Optional) Name of vSwitch
23-
SwitchNICs = 'NIC1",NIC2" ; # (Optional) Adds these NICs to vSwitch (without connecting hostOS).
19+
DomainAdminName="LabAdmin"; # Used during 2_CreateParentDisks (no affect if changed after this step)
20+
AdminPassword="LS1setup!"; # Used during 2_CreateParentDisks. If changed after, it will break the functionality of 3_Deploy.ps1
21+
Prefix = "MSLab-"; # (Optional) All VMs and vSwitch are created with this prefix, so you can identify the lab. If not specified, Lab folder name is used
22+
SwitchName = "LabSwitch"; # (Optional) Name of vSwitch
23+
SwitchNICs = "NIC1","NIC2"; # (Optional) Adds these NICs to vSwitch (without connecting hostOS).
2424
SecureBoot=$true; # (Optional) Useful when testing unsigned builds (Useful for MS developers for daily builds)
25-
DCEdition='4'; # 4 for DataCenter or 3 for DataCenterCore
26-
InstallSCVMM='No'; # (Optional) Yes/Prereqs/SQL/ADK/No
25+
DCEdition="4"; # 4 for DataCenter or 3 for DataCenterCore
26+
InstallSCVMM="No"; # (Optional) Yes/Prereqs/SQL/ADK/No
2727
AdditionalNetworksInDC=$false; # (Optional) If Additional networks should be added also to DC
2828
DomainNetbiosName="Corp"; # (Optional) If set, custom domain NetBios name will be used. if not specified, Default "corp" will be used
2929
DomainName="Corp.contoso.com"; # (Optional) If set, custom DomainName will be used. If not specified, Default "Corp.contoso.com" will be used

0 commit comments

Comments
 (0)