Skip to content

Commit 00606ac

Browse files
authored
Merge pull request #8399 from alexandair/patch-14
Fix header and title
2 parents 2ca52a8 + cf49c4e commit 00606ac

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/virtual-machines/windows/tutorial-manage-vm.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: Tutorial - Create and manage Windows VMs with Azure PowerShell | Microsoft Docs
33
description: In this tutorial, you learn how to use Azure PowerShell to create and manage Windows VMs in Azure
44
services: virtual-machines-windows
@@ -21,7 +21,7 @@ ms.custom: mvc
2121
#Customer intent: As an IT administrator, I want to learn about common maintenance tasks so that I can create and manage Windows VMs in Azure
2222
---
2323

24-
# Tutorial: Create and Manage Linux VMs with Azure PowerShell
24+
# Tutorial: Create and Manage Windows VMs with Azure PowerShell
2525

2626
Azure virtual machines provide a fully configurable and flexible computing environment. This tutorial covers basic Azure virtual machine deployment items such as selecting a VM size, selecting a VM image, and deploying a VM. You learn how to:
2727

@@ -34,7 +34,7 @@ Azure virtual machines provide a fully configurable and flexible computing envir
3434
3535
[!INCLUDE [cloud-shell-powershell.md](../../../includes/cloud-shell-powershell.md)]
3636

37-
If you choose to install and use the PowerShell locally, this tutorial requires the Azure PowerShell module version 5..7.0 or later. Run `Get-Module -ListAvailable AzureRM` to find the version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-azurerm-ps). If you are running PowerShell locally, you also need to run `Connect-AzureRmAccount` to create a connection with Azure.
37+
If you choose to install and use the PowerShell locally, this tutorial requires the Azure PowerShell module version 5.7.0 or later. Run `Get-Module -ListAvailable AzureRM` to find the version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-azurerm-ps). If you are running PowerShell locally, you also need to run `Connect-AzureRmAccount` to create a connection with Azure.
3838

3939
## Create resource group
4040

@@ -88,15 +88,15 @@ Use the following command, on your local machine, to create a remote desktop ses
8888
mstsc /v:<publicIpAddress>
8989
```
9090

91-
In the **Windows Security** window, select **More choices** and then **Use a different account**. Type the username and password you created for the for the virtual machine and then click **OK**.
91+
In the **Windows Security** window, select **More choices** and then **Use a different account**. Type the username and password you created for the virtual machine and then click **OK**.
9292

9393
## Understand VM images
9494

95-
The Azure marketplace includes many virtual machine images that can be used to create a new virtual machine. In the previous steps, a virtual machine was created using the Windows Server 2016-Datacenter image. In this step, the PowerShell module is used to search the marketplace for other Windows images, which can also be used as a base for new VMs. This process consists of finding the publisher, offer, SKU, and optionally a version number to [identify](cli-ps-findimage.md#terminology) the image.
95+
The Azure marketplace includes many virtual machine images that can be used to create a new virtual machine. In the previous steps, a virtual machine was created using the Windows Server 2016 Datacenter image. In this step, the PowerShell module is used to search the marketplace for other Windows images, which can also be used as a base for new VMs. This process consists of finding the publisher, offer, SKU, and optionally a version number to [identify](cli-ps-findimage.md#terminology) the image.
9696

9797
Use the [Get-AzureRmVMImagePublisher](/powershell/module/azurerm.compute/get-azurermvmimagepublisher) command to return a list of image publishers:
9898

99-
```powersehll
99+
```powershell
100100
Get-AzureRmVMImagePublisher -Location "EastUS"
101101
```
102102

@@ -155,12 +155,12 @@ New-AzureRmVm `
155155
-AsJob
156156
```
157157

158-
The `-AsJob` parameter creates the VM as a background task, so the PowerShell prompts return to you. You can view details of background jobs with the `Job` cmdlet.
158+
The `-AsJob` parameter creates the VM as a background task, so the PowerShell prompts return to you. You can view details of background jobs with the `Get-Job` cmdlet.
159159

160160

161161
## Understand VM sizes
162162

163-
A virtual machine size determines the amount of compute resources such as CPU, GPU, and memory that are made available to the virtual machine. Virtual machines need to be created with a size appropriate for the expect work load. If workload increases, an existing virtual machine can be resized.
163+
A virtual machine size determines the amount of compute resources such as CPU, GPU, and memory that are made available to the virtual machine. Virtual machines need to be created with a size appropriate for the expect workload. If workload increases, an existing virtual machine can be resized.
164164

165165
### VM Sizes
166166

0 commit comments

Comments
 (0)