Quickstart: Create a Windows virtual machine in the Azure portal

Applies to: ✔️ Windows VMs

Azure virtual machines (VMs) can be created through the Azure portal. This method provides a browser-based user interface to create VMs and their associated resources. This quickstart shows you how to use the Azure portal to deploy a virtual machine (VM) in Azure that runs Windows Server 2019. To see your VM in action, you then RDP to the VM and install the IIS web server.

If you don't have an Azure subscription, create a free account before you begin.

Sign in to Azure

Sign in to the Azure portal.

Create virtual machine

  1. Enter virtual machines in the search.

  2. Under Services, select Virtual machines.

  3. In the Virtual machines page, select Create and then Azure virtual machine. The Create a virtual machine page opens.

  4. Under Instance details, enter myVM for the Virtual machine name and choose Windows Server 2022 Datacenter: Azure Edition - x64 Gen 2 for the Image. Leave the other defaults.

    Screenshot of the Instance details section where you provide a name for the virtual machine and select its region, image and size.

    Note

    Some users will now see the option to create VMs in multiple zones. To learn more about this new capability, see Create virtual machines in an availability zone. Screenshot showing that you have the option to create virtual machines in multiple availability zones.

  5. On the right side, you see an example summary of the estimated costs. This updates as you select options that affect the cost, such as choosing Windows Server 2022 Datacenter: Azure Edition - x64 Gen 2 for your Image.

    Screenshot of Windows virtual machine estimated cost on creation page in the Azure portal.

    If you want to learn more about how cost works for virtual machines, see the Cost optimization Overview page.

  6. Under Administrator account, provide a username, such as azureuser and a password. The password must be at least 12 characters long and meet the defined complexity requirements.

    Screenshot of the Administrator account section where you provide the administrator username and password

  7. Under Inbound port rules, choose Allow selected ports and then select RDP (3389) and HTTP (80) from the drop-down.

    Screenshot of the inbound port rules section where you select what ports inbound connections are allowed on

  8. Leave the remaining defaults and then select the Review + create button at the bottom of the page.

    Screenshot showing the Review + create button at the bottom of the page.

  9. After validation runs, select the Create button at the bottom of the page. Screenshot showing that validation has passed. Select the Create button to create the VM.

  10. After deployment is complete, select Go to resource.

    Screenshot showing the next step of going to the resource.

Connect to virtual machine

Create a remote desktop connection to the virtual machine. These directions tell you how to connect to your VM from a Windows computer. On a Mac, you need an RDP client such as this Remote Desktop Client from the Mac App Store.

  1. On the overview page for your virtual machine, select the Connect > RDP.

    Screenshot of the virtual machine overview page showing the location of the connect button.

  2. In the Connect with RDP tab, keep the default options to connect by IP address, over port 3389, and click Download RDP file.

    Screenshot showing the remote desktop settings and the Download RDP file button.

  3. Open the downloaded RDP file and click Connect when prompted.

  4. In the Windows Security window, select More choices and then Use a different account. Type the username as localhost\username, enter the password you created for the virtual machine, and then click OK.

  5. You may receive a certificate warning during the sign-in process. Click Yes or Continue to create the connection.

Install web server

To see your VM in action, install the IIS web server. Open a PowerShell prompt on the VM and run the following command:

Install-WindowsFeature -name Web-Server -IncludeManagementTools

When done, close the RDP connection to the VM.

View the IIS welcome page

In the portal, select the VM and in the overview of the VM, hover over the IP address to show Copy to clipboard. Copy the IP address and paste it into a browser tab. The default IIS welcome page will open, and should look like this:

Screenshot of the IIS default site in a browser

Clean up resources

Delete resources

When no longer needed, you can delete the resource group, virtual machine, and all related resources.

  1. On the Overview page for the VM, select the Resource group link.
  2. At the top of the page for the resource group, select Delete resource group.
  3. A page will open warning you that you are about to delete resources. Type the name of the resource group and select Delete to finish deleting the resources and the resource group.

Auto-shutdown

If the VM is still needed, Azure provides an Auto-shutdown feature for virtual machines to help manage costs and ensure you are not billed for unused resources.

  1. On the Operations section for the VM, select the Auto-shutdown option.
  2. A page will open where you can configure the auto-shutdown time. Select the On option to enable and then set a time that works for you.
  3. Once you have set the time, select Save at the top to enable your Auto-shutdown configuration.

Note

Remember to configure the time zone correctly to match your requirements, as (UTC) Coordinated Universal Time is the default setting in the Time zone dropdown.

For more information see Auto-shutdown.

Next steps

In this quickstart, you deployed a simple virtual machine, opened a network port for web traffic, and installed a basic web server. To learn more about Azure virtual machines, continue to the tutorial for Windows VMs.