Skip to content

Commit fb57d25

Browse files
Merge pull request #219678 from mamccrea/patch-7
Fix broken link
2 parents e1ecc6b + 8c8b58f commit fb57d25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/virtual-machines/windows/image-builder-virtual-desktop.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This article is intended as a copy-and-paste exercise.
5151
"name": "installFSLogix",
5252
"runElevated": true,
5353
"runAsSystem": true,
54-
"scriptUri": "https://raw.githubusercontent.com/azure/azvmimagebuilder/master/solutions/14_Building_Images_WVD/0_installConfFSLogix.ps1"
54+
"scriptUri": "https://raw.githubusercontent.com/azure/azvmimagebuilder/main/solutions/14_Building_Images_WVD/0_installConfFsLogix.ps1"
5555
```
5656
- Comment your code: The VM Image Builder build log, *customization.log*, is verbose. If you comment your scripts by using 'write-host', they'll be sent to the logs, which should make troubleshooting easier.
5757

@@ -139,7 +139,7 @@ New-AzResourceGroup -Name $imageResourceGroup -Location $location
139139
1. Assign permissions to the identity to distribute images. The following commands download and update the template with the previously specified parameters.
140140

141141
```azurepowershell-interactive
142-
$aibRoleImageCreationUrl="https://raw.githubusercontent.com/azure/azvmimagebuilder/master/solutions/12_Creating_AIB_Security_Roles/aibRoleImageCreation.json"
142+
$aibRoleImageCreationUrl="https://raw.githubusercontent.com/azure/azvmimagebuilder/main/solutions/12_Creating_AIB_Security_Roles/aibRoleImageCreation.json"
143143
$aibRoleImageCreationPath = "aibRoleImageCreation.json"
144144

145145
# Download the config
@@ -214,7 +214,7 @@ Get-AzVMImageSku -Location westus2 -PublisherName MicrosoftWindowsDesktop -Offer
214214
Now, download the template and configure it for your own use.
215215

216216
```azurepowershell-interactive
217-
$templateUrl="https://raw.githubusercontent.com/azure/azvmimagebuilder/master/solutions/14_Building_Images_WVD/armTemplateWVD.json"
217+
$templateUrl="https://raw.githubusercontent.com/azure/azvmimagebuilder/main/solutions/14_Building_Images_WVD/armTemplateWVD.json"
218218
$templateFilePath = "armTemplateWVD.json"
219219
220220
Invoke-WebRequest -Uri $templateUrl -OutFile $templateFilePath -UseBasicParsing
@@ -231,7 +231,7 @@ Invoke-WebRequest -Uri $templateUrl -OutFile $templateFilePath -UseBasicParsing
231231
232232
```
233233

234-
Feel free to view the [template](https://raw.githubusercontent.com/azure/azvmimagebuilder/master/solutions/14_Building_Images_WVD/armTemplateWVD.json). All the code is viewable.
234+
Feel free to view the [template](https://raw.githubusercontent.com/azure/azvmimagebuilder/main/solutions/14_Building_Images_WVD/armTemplateWVD.json). All the code is viewable.
235235

236236

237237
## Submit the template
@@ -304,5 +304,5 @@ If you no longer need the resources that were created during this process, you c
304304
305305
## Next steps
306306
307-
To try more VM Image Builder examples, go to [GitHub](https://github.com/azure/azvmimagebuilder/tree/master/quickquickstarts).
307+
To try more VM Image Builder examples, go to [GitHub](https://github.com/azure/azvmimagebuilder/tree/main/quickquickstarts).
308308

0 commit comments

Comments
 (0)