Skip to content

Commit 3c8a06a

Browse files
committed
Win2025
1 parent 0d3358c commit 3c8a06a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Scripts/2_CreateParentDisks.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,10 @@ If (-not $isAdmin) {
274274
}
275275
$ISOServer = Mount-DiskImage -ImagePath $ServerISOItem.FullName -PassThru
276276
}else{
277-
WriteInfoHighlighted "Please select ISO image with Windows Server 2016, 2019, 2022 or Server Insider"
277+
WriteInfoHighlighted "Please select ISO image with Windows Server 2016, 2019, 2022, 2025 or Server Insider"
278278
[reflection.assembly]::loadwithpartialname("System.Windows.Forms")
279279
$openFile = New-Object System.Windows.Forms.OpenFileDialog -Property @{
280-
Title="Please select ISO image with Windows Server 2016, 2019, 2022 or Server Insider"
280+
Title="Please select ISO image with Windows Server 2016, 2019, 2022, 2025 or Server Insider"
281281
}
282282
$openFile.Filter = "iso files (*.iso)|*.iso|All files (*.*)|*.*"
283283
If($openFile.ShowDialog() -eq "OK"){

Scripts/LabConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $LabConfig=@{AllowedVLANs="1-10,711-719" ; DomainAdminName='LabAdmin'; AdminPass
55
1..4 | ForEach-Object {$LABConfig.VMs += @{ VMName = "$S2D$_" ; Configuration = 'S2D' ; ParentVHD = 'Win2022Core_G2.vhdx'; SSDNumber = 0; SSDSize=800GB ; HDDNumber = 12; HDDSize= 4TB ; MemoryStartupBytes= 512MB }}
66
# Or Azure Stack HCI 23H2 (non-domain joined) https://github.com/DellGEOS/AzureStackHOLs/tree/main/lab-guides/01a-DeployAzureStackHCICluster-CloudBasedDeployment
77
#1..2 | ForEach-Object {$LABConfig.VMs += @{ VMName = "ASNode$_" ; Configuration = 'S2D' ; ParentVHD = 'AzSHCI23H2_G2.vhdx' ; HDDNumber = 4 ; HDDSize= 2TB ; MemoryStartupBytes= 24GB; VMProcessorCount=16 ; vTPM=$true ; Unattend="NoDjoin" ; NestedVirt=$true }}
8-
# Or Windows Server 2025 https://github.com/DellGEOS/AzureStackHOLs/tree/main/lab-guides/03-TestingWindowsServerInsider
8+
# Or Windows Server 2025 https://github.com/DellGEOS/AzureLocalHOLs/tree/main/lab-guides/03-TestingWindowsServer2025
99
#1..2 | ForEach-Object {$LABConfig.VMs += @{ VMName="S2D$_" ; Configuration='S2D' ; ParentVHD='Win2025Core_G2.vhdx' ; HDDNumber=4 ; HDDSize=2TB ; MemoryStartupBytes=1GB; VMProcessorCount=4 ; vTPM=$true}}
1010

1111
### HELP ###

0 commit comments

Comments
 (0)