Skip to content

Commit 2fc2da1

Browse files
committed
2509 fix
1 parent 5e51bfc commit 2fc2da1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

HandsOnLabs/01-CreatingFirstLab/readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,12 @@ Note: Start-BitsTransfer is used because invoke-webrequest is slow for big files
6262
```PowerShell
6363
#ISO
6464
$WindowsServerEvalURL="https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66749/26100.1742.240906-0331.ge_release_svc_refresh_SERVER_EVAL_x64FRE_en-us.iso"
65-
$AzureLocal2505URL="http://aka.ms/hcireleaseimage/2505"
65+
#you should download latest image from Azure Portal, this is just an example
66+
$AzureLocal2509URL="http://aka.ms/hcireleaseimage/2509"
6667
6768
#download
6869
Start-BitsTransfer -Source $WindowsServerEvalURL -Destination $env:userprofile\Downloads\
69-
Start-BitsTransfer -Source $AzureLocal2505URL -Destination $env:userprofile\Downloads\AzureLocal2505.iso
70+
Start-BitsTransfer -Source $AzureLocal2509URL -Destination $env:userprofile\Downloads\AzureLocal2509.iso
7071
7172
```
7273

0 commit comments

Comments
 (0)