Skip to content

Commit 947f5fd

Browse files
authored
Merge pull request #3233 from jaredr80/patch-8
Missing ( in the script
2 parents 95279f4 + 8b691f8 commit 947f5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-machines/windows/create-vm-specialized.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ New-AzureRmResourceGroup -Location $location -Name $destinationResourceGroup
124124
Create the new OS disk from the uploaded VHD.
125125

126126
```powershell
127-
$sourceUri = https://storageaccount.blob.core.windows.net/vhdcontainer/osdisk.vhd)
127+
$sourceUri = (https://storageaccount.blob.core.windows.net/vhdcontainer/osdisk.vhd)
128128
$osDiskName = 'myOsDisk'
129129
$osDisk = New-AzureRmDisk -DiskName $osDiskName -Disk `
130130
(New-AzureRmDiskConfig -AccountType StandardLRS -Location $location -CreateOption Import `

0 commit comments

Comments
 (0)