Skip to content

Commit 348adec

Browse files
authored
Merge pull request #110555 from Karishma-Tiwari-MSFT/patch-167
(ForumsTeam) fixes MicrosoftDocs/azure-docs#51882
2 parents ee48acd + 5227ac3 commit 348adec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-machine-scale-sets/virtual-machine-scale-sets-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ New-AzSnapshot -ResourceGroupName $rgname -SnapshotName 'mySnapshot' -Snapshot $
716716
Create a managed disk from the snapshot.
717717

718718
```azurepowershell-interactive
719-
$snapshotName = "myShapshot"
719+
$snapshotName = "mySnapshot"
720720
$snapshot = Get-AzSnapshot -ResourceGroupName $rgname -SnapshotName $snapshotName
721721
$diskConfig = New-AzDiskConfig -AccountType Premium_LRS -Location $location -CreateOption Copy -SourceResourceId $snapshot.Id
722722
$osDisk = New-AzDisk -Disk $diskConfig -ResourceGroupName $rgname -DiskName ($snapshotName + '_Disk')

0 commit comments

Comments
 (0)