惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Deploying Azure Virtual Machines the GUI Way: A Step-by-S...
SULIAT · 2026-05-15 · via DEV Community
Cover image for Deploying Azure Virtual Machines the GUI Way: A Step-by-Step Guide

SULIAT

What is a Virtual Machine?

A Virtual Machine (VM) is like a computer within a computer in the cloud. A VM uses software to create a computer that can run its own operating system separately from your actual device. A VM is basically a software-based computer that runs inside another computer. For example, on a MacBook, you can have your main operating system, and run Windows or Linux inside a virtual machine at the same time, while having its own storage, processing power, memory (RAM), and operating system.

Before deploying a virtual machine on Azure, there are two essential prerequisites to have in place:

  • An active Azure account: Log in to the Azure Portal using your credentials. If you do not have an account yet, you can sign up for a free trial account on the Microsoft's Azure website.
  • A Resource Group: A resource group serves as a logical container that organizes and holds related Azure resources together. It is the foundation of any Azure workflow, meaning it is always the first thing you set up before anything else.

With everything in place, we will walk through the process step by step, beginning with creating a resource group and then deploying the virtual machine, all through the Azure Portal's Graphical User Interface(GUI).

1. Create and deploy a resource group to hold all your project resources.

  • In the Azure portal, search for and select Resource groups.

resource group

  • Select + Create.

+ create

  • Give your resource group a name. Select a region. Use this region throughout the project.

name

  • Select Review and create to validate the resource group.

review

  • Select Create to deploy the resource group.

group

2. Create and deploy a Virtual Machine to host your application in the cloud.

  • In the Azure portal, search for and select Virtual Machines.

virtual

  • Select + Create. Click on Virtual machine. This will take you to the basics tab.

machine

  • On the Basics tab, head over to the Project Details section, where you will select your Subscription and the Resource group deployed in the previous step."

basics

  • On the Basics tab, scroll down to the Instance Details section and configure the following settings:

i. Virtual Machine Name: Give the virtual machine a name. Every computer has a name, so the next logical thing to do is to give the VM a name.

name
ii. Region: Select a region where you want the VM to be hosted.

central
iii. Availability Options: Since it is a free trial account subscription, select No Infrastructure Redundancy Required.

options
iv. Security Type: Select Trusted Launch Virtual Machine.

Intype
v. Image: Select Windows 10. In regards to a VM, the image refers to your choice of operating system.

Image
vi. Leave the rest of the settings under Instance Details at their default values.

default

  • Still on the Basics tab, scroll down to the Administrator Account section and configure the following: Username and Password. Since all computers have a username and password, the next logical thing to do is to give the virtual machine a username and password.

password

  • Further down on the Basics tab, scroll down to the Inbound Port Rules section and configure the following: Select the Public inbound ports, select inbound ports HTTP (80) and the default RDP (3389). These ports will allow you to connect the VM to the internet.

ports

  • Further down on the Basics tab, locate the Licensing section and check the box to confirm your licensing agreement before proceeding.

license

  • Having completed the Basics tab, scroll back up and click on the Monitoring tab. Under the Boot Diagnostics blade, select Disable. Disabling boot diagnostics ensures that your local device does not monitor or track the activity on the VM every time it is restarted.

boot

  • Select Review and create to validate the Virtual machine.

blade

  • Select Create to deploy the Virtual machine.

deploy

  • Wait for the Virtual machine to deploy and then Go to resource.

go to

3. Configuring the IP Address.

  • Once the deployment is complete, click on Go to Resource to open the virtual machine. Navigate to the Networking or Essentials section to locate the IP Address, then click on it to begin configuration.

Ip

  • Under the IP address settings, locate the Idle Timeout option and change the default time from 4 minutes to 30 minutes. This ensures that the VM does not disconnect or time out prematurely during periods of inactivity, keeping your session active and stable for longer.

time

  • Select Apply.

Apply

  • With the IP address configured, navigate back to the virtual machine and click the Connect button.

back

  • From the dropdown, click on the Check Access blade, once you are checked in, the VM is good to go.

check

  • Select Download RDP File to download the connection file to your actual device. Note for macOS Users Unlike Windows, macOS does not support RDP files. If you are using a Mac, you will need to download the Windows App from the Apple App Store first before you can open and run the RDP file to connect to your virtual machine.

download

  • Once the RDP file has been downloaded, click on the Download icon located at the top right of your browser. Locate the RDP file you just downloaded and click the Connect button directly in front of it to initiate the connection.

Icon

  • Enter the username and password you set up earlier in the Administrator Account section. Click Continue to proceed.

pops

  • A security certificate warning will appear. Click **Continue **to accept and continue.

move

  • At this point, your virtual machine is fully configured and ready for use.

VM

  • Complete with the Start menu confirming that your VM is fully up and running. start

Conclusion

Creating a virtual machine on Azure through the graphical user interface is a straightforward process that does not require any command-line experience. By following the steps outlined in this article, you have successfully deploy a fully functional Windows 10 virtual machine in the cloud.