Skip to content

Commit ffa289c

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#121927
Changes made in line no 32 & 45 From East US To eastus
1 parent 4397da5 commit ffa289c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-machines/windows/quick-create-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To open the Cloud Shell, just select **Open Cloudshell** from the upper right co
2929
Create an Azure resource group with [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup). A resource group is a logical container into which Azure resources are deployed and managed.
3030

3131
```azurepowershell-interactive
32-
New-AzResourceGroup -Name 'myResourceGroup' -Location 'EastUS'
32+
New-AzResourceGroup -Name 'myResourceGroup' -Location 'eastus'
3333
```
3434

3535
## Create virtual machine
@@ -42,7 +42,7 @@ When prompted, provide a username and password to be used as the sign-in credent
4242
New-AzVm `
4343
-ResourceGroupName 'myResourceGroup' `
4444
-Name 'myVM' `
45-
-Location 'East US' `
45+
-Location 'eastus' `
4646
-Image 'MicrosoftWindowsServer:WindowsServer:2022-datacenter-azure-edition:latest' `
4747
-VirtualNetworkName 'myVnet' `
4848
-SubnetName 'mySubnet' `

0 commit comments

Comments
 (0)