Skip to content

Commit 947b1e2

Browse files
authored
Corrected docs file-not-found build warnings (#23942)
Co-authored-by: Mike F. Robbins <[email protected]>
1 parent 84b25c4 commit 947b1e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Compute/Compute/help/New-AzVM.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ $vm1 = Get-AzVM -ResourceGroupName $rgname -Name $vmname1;
314314
#$vm1.SecurityProfile.UefiSettings.VTpmEnabled $true;
315315
#$vm1.SecurityProfile.UefiSettings.SecureBootEnabled $true;
316316
```
317-
This example Creates a new VM with the TrustedLaunch Security Type and sets flags EnableSecureBoot and EnableVtpm as True by default. A Trusted Launch VM requires a Gen2 image. Please check [the Trusted Launch feature page](aka.ms/trustedlaunch) for more information.
317+
This example Creates a new VM with the TrustedLaunch Security Type and sets flags EnableSecureBoot and EnableVtpm as True by default. A Trusted Launch VM requires a Gen2 image. Please check [the Trusted Launch feature page](https://aka.ms/trustedlaunch) for more information.
318318

319319
### Example 9: Create a VM with Trusted Launch turned on by defualt using New-AzVMConfig.
320320
```powershell
@@ -356,7 +356,7 @@ $vm = Get-AzVM -ResourceGroupName $rgname -Name $vmname;
356356
# Verify $vm.SecurityProfile.UefiSettings.SecureBootEnabled is true.
357357
# Verify $vm.SecurityProfile.UefiSettings.VTpmEnabled is true.
358358
```
359-
This example shows how to create a VM with a valid Gen2 image, allowing the VM to default to TrustedLaunch which requires Gen2 images. Please check [the Trusted Launch feature page](aka.ms/trustedlaunch) for more information.
359+
This example shows how to create a VM with a valid Gen2 image, allowing the VM to default to TrustedLaunch which requires Gen2 images. Please check [the Trusted Launch feature page](https://aka.ms/trustedlaunch) for more information.
360360

361361
### Example 10: Creates a VM with TrustedLaunch turned on by default.
362362
```powershell
@@ -374,7 +374,7 @@ $vm = Get-AzVM -ResourceGroupName $rgname -Name $vmname;
374374
# Verify $vm.SecurityProfile.SecurityType is TrustedLaunch.
375375
# Verify the $vm.StorageProfile.ImageReference.Sku has defaulted to "2022-datacenter-azure-edition", a Gen2 image.
376376
```
377-
This example shows how the simple cmdlet call with minimal parameters will result in a TrustedLaunch enabled VM with a Gen2 image. Please check [the Trusted Launch feature page](aka.ms/trustedlaunch) for more information.
377+
This example shows how the simple cmdlet call with minimal parameters will result in a TrustedLaunch enabled VM with a Gen2 image. Please check [the Trusted Launch feature page](https://aka.ms/trustedlaunch) for more information.
378378

379379

380380
## PARAMETERS

src/Compute/Compute/help/New-AzVmss.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ $result = New-AzVmss -Credential $vmCred -VMScaleSetName $vmssName1 -ImageName $
227227
# $result.VirtualMachineProfile.SecurityProfile.UefiSettings.SecureBootEnabled;
228228
```
229229

230-
This example Creates a new VMSS with the new Security Type 'TrustedLaunch' and the necessary UEFISettings values, VTpmEnabled and SecureBootEnalbed are true. Please check [the Trusted Launch feature page](aka.ms/trustedlaunch) for more information.
230+
This example Creates a new VMSS with the new Security Type 'TrustedLaunch' and the necessary UEFISettings values, VTpmEnabled and SecureBootEnalbed are true. Please check [the Trusted Launch feature page](https://aka.ms/trustedlaunch) for more information.
231231

232232
### Example 5: Create a Vmss in Orchestration Mode: Flexible by default
233233
```powershell
@@ -277,7 +277,7 @@ $vmssGet = Get-AzVmss -ResourceGroupName $rgname -VMScaleSetName $vmssName;
277277
# Verify $vmssGet.VirtualMachineProfile.SecurityProfile.UefiSettings.SecureBootEnabled is True.
278278
# Verify $vmssGet.VirtualMachineProfile.StorageProfile.ImageReference.Sku is 2022-Datacenter-Azure-Edition.
279279
```
280-
The virtual machine scale set above has Trusted Launch enabled by default. Please check [the Trusted Launch feature page](aka.ms/trustedlaunch) for more information.
280+
The virtual machine scale set above has Trusted Launch enabled by default. Please check [the Trusted Launch feature page](https://aka.ms/trustedlaunch) for more information.
281281

282282
## PARAMETERS
283283

0 commit comments

Comments
 (0)