DEV Community

Cover image for Creating a Windows Virtual Machine in Azure: Step-by-Step Guide
Awoyemi Samuel Ola
Awoyemi Samuel Ola

Posted on

Creating a Windows Virtual Machine in Azure: Step-by-Step Guide

What is a Virtual Machine?

A virtual machine (VM) is a software-based emulation of a physical computer that runs an operating system and applications. It operates within a host system and allows multiple VMs to run on a single physical machine, enabling efficient resource utilization and isolation for various tasks and environments.

On the Azure Portal at www.portal.azure.com

Step 1: Search for Virtual Machine

Search for Virtual Machine

Step 2: Click Virtual machine

Click Virtual machine

Step 3: Click Create

Image description

Image description

Step 4: Click Azure Virtual machine

Image description

Step5:Create a new Resource Group for the Virtual Machine.

A resource group in Azure is a logical container that holds related Azure resources, such as virtual machines, storage accounts, and networking components. It helps in organizing, managing, and monitoring resources collectively within a project or application.

For better understanding, use a school setting to illustrate Azure, Resource group, and Virtual machine; In the school (Azure), classrooms are resource groups, each holding subject-related items. A student's desk symbolizes a virtual machine where various tasks are done by the students.

Image description

Step 6: Assign a preferred name to the Resource Group

Image description

Step 7: Assign a preferred name to the Virtual machine
Image description

Step 8: Select a preferred Region for the Virtual Machine.

An Azure region is a geographic area containing multiple data centers that host Microsoft Azure cloud services, enabling efficient and reliable global access to computing resources and data storage.

Think of a school campus as an Azure region, with multiple buildings representing data centers. Within each building (data center), there are classrooms symbolizing resource groups, where related subjects' materials are kept together.

Inside a classroom (resource group), you have desks with computers like virtual machines. These virtual machines are like students' personal workstations, allowing them to perform tasks without needing physical computers. Just as the school campus spans a large area, an Azure region covers a geographic area to offer services globally.

Microsoft Azure has over 60 regions worldwide.

Image description

Step 9: Deploy the Virtual machine in an Availability Zone.

An Azure availability zone is a physically separate data center within an Azure region, providing fault tolerance by ensuring applications remain available and resilient to failures within a region.

Imagine a university as Azure, with buildings as regions. Each building houses classrooms as availability zones. The campus represents a large-scale system, Azure, with classrooms safeguarding against failures like availability zones in data centers.

Image description
Image description

Step 10: Under images, select the images draw-down box

Image description

Step 11: Under images, select the Windows Server 2019 Datacenter x64 Gen2

Image description

Step 12: Create the Administrator Account; with the username and password.

Image description

Step 13: Configure the inbound Port rules. Click on Allow select port under Public inbound ports.

In Azure, checking "Allow inbound port" under public inbound ports means that incoming network traffic to the specified port on a virtual machine (VM) or resource will be permitted. This setting allows external connections to reach the resource through the specified port, potentially exposing it to the internet. It's crucial to configure this carefully to ensure security by only allowing necessary and safe connections.

Image description

Step 14: Inbound port must be specified. Select the draw-down on the inbound ports box.

Image description

Step 15: Check the RDP(3389) and HTTP(80)

Image description

What are the implications of checking RDP and HTTP while spinning off a Virtual Machine?

Checking the ** RDP (Remote Desktop Protocol) port (3389)** and the ** HTTP port (80)** on the inbound settings of an Azure virtual machine has the following implications:

RDP (Port 3389): Enabling RDP allows remote access to the virtual machine. This is useful for administrators to manage and configure the virtual machine. However, it also presents a security risk if not properly secured. Unauthorized users could attempt to gain access to the virtual machine if security measures are not in place, potentially leading to data breaches or malicious activities.

HTTP (Port 80): Enabling port 80 allows incoming web traffic, commonly used for serving websites or web applications. It's crucial to ensure the hosted application is properly secured against common web vulnerabilities like cross-site scripting (XSS) or SQL injection, as well as data breaches or unauthorized access.

When enabling these ports, implement the following security practices:

Strong Credentials: Use strong, complex passwords or consider using SSH keys for remote access.
Network Security Groups (NSGs): Configure NSGs to restrict access to only necessary IP addresses or ranges.
Firewalls: Set up firewalls on the virtual machine itself to allow only authorized IPs.
Regular Updates: Keep the virtual machine's operating system and applications updated with security patches.
HTTPS (for HTTP): If hosting a website, consider using HTTPS (port 443) to encrypt traffic and ensure data privacy.
Monitor Logs: Regularly monitor logs for any unusual activity.

It is very important to always prioritize security when exposing services to the internet, and consider using Azure services like Azure Bastion or VPNs for secure remote access._

Step 16: Click on "Monitoring" and disable boot diagnostics.

Image description

Incorporating monitoring during virtual machine creation establishes a proactive approach to maintenance, security, and performance, contributing to a more reliable and optimized IT environment.

Step 17: Disable the boot Diagnostics

Image description

Disabling boot diagnostics, a feature that captures screenshots and logs during a virtual machine's boot process, might be necessary in specific situations:

Security: Boot diagnostics can potentially capture sensitive information during the boot process, posing security risks if not managed properly.

Privacy: Sensitive data could be inadvertently captured in screenshots or logs, violating privacy regulations and policies.

Resource Usage: Enabling boot diagnostics consumes storage space and processing resources, impacting performance and incurring unnecessary costs.

Debugging: In some scenarios, boot diagnostics might not be needed for troubleshooting or debugging, making it redundant.

Customization: Boot diagnostics may interfere with custom boot processes or scripts that need to run without external interference.

Temporary Scenarios: For temporary instances or testing environments, boot diagnostics might not provide significant value.

Step 18: Click on Review and Create

Image description

Step 19: After Validation passed, click on Create to deploy the Virtual machine

Image description

Image description

Image description

Step 20: After deployment, click on Go to resource

Image description

Step 21: Click on the "Connect" function.

Image description

In the context of Azure or virtual machines, the "Connect" function usually refers to connecting to a virtual machine (VM) for remote management and administration.

This can be achieved using technologies like Remote Desktop Protocol (RDP) for Windows VMs or SSH (Secure Shell) for Linux VMs.

The purpose of the "Connect" function is to provide users with a way to access and manage their virtual machines remotely.

This is particularly useful when you need to perform tasks on a VM without being physically present at the machine.

By utilizing the "Connect" feature, you can effectively manage and maintain your virtual machines in a convenient and secure manner.

Step 22: Download Remote Desktop Protocol (RDP) to connect the
virtual machine (VM) for remote management and administration.

Image description

Step 23: Save the Downloaded RDP file on the local PC

Image description

Step 24: Click on the RDP file and input the Administrator's Account details

Image description

Image description

Image description

Step 25: Finally Launch the Virtual machine

Image description

Congratulations on the successful launch of your virtual machine!

With this accomplishment, you've unlocked new possibilities for scalability, flexibility, and efficiency in your operations. Remember to continuously monitor, secure, and optimize your VM to ensure it performs at its best. Embrace the power of technology to drive your goals forward.

Best of luck on your journey ahead!

Just Sharing the little I knew with the co-greenhorns on Cloud!

Top comments (0)