Skip to main content

Creating virtual Machine in Microsoft Azure


In today’s tutorial, we will learn about creating Virtual Machine in Microsoft Azure.
Follow the below steps to create the VM in Azure.
Login to Microsoft Azure console with valid credentials and follow below.
  1. Click on Virtual machine in the console.
  2. Then click on create virtual machine to proceed further.
  3. Select recommended Operating system as per your requirement from the below window. In this example, I am selecting Windows Server Operating system to proceed with.
  4. Select the Operating system as Windows Server 2012 R2 Datacenter and select a deployment model as Resource Manager and click on create to proceed further

    for more info related to deployment model go through below link from Microsoft.
    https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-deployment-model
  1. Configure the basic settings for Virtual machine as below.
    - Provide the Virtual Machine Name
    - Select the VM disk type as per your requirement
    - Provide username and password
    - Select Subscription
    - In resource group check the circle to create new and provide Resource group name.
    - Select the location
    - Select the windows server license option as yes or no and click ok to proceed further.

  2. Select the size as per your requirement and click on select to continue.
  3. Verify the settings appropriately and click ok to continue.
  4. Cross verify the summary as part of best practice and click ok to continue.
You can monitor the process of deployment in notification area.

Post completion of deployment click on connect to launch the rdp session.

This concludes the creating VM in Microsoft Azure.

Happy Learning

Comments

Popular posts from this blog

WMI Error - Windows Management files may be moved or missing.

WMI ERRORs: Symptoms: >>Unable to open System Information. >>WMI Error - Windows Management files may be moved or missing. Resolution : Navigate to Start >> All programs >> accessories >> right click on CMD >> run as administrator, and run the below commands one by one. 1)     sc config winmgmt start= disabled 2)     net stop winmgmt /y 3)     %systemdrive% 4)     cd %windir%\system32\wbem 5)     for /f %s in ('dir /b *.dll') do regsvr32 /s %s     6)     regsvr32 %windir%\system32\tscfgwmi.dll           7)     wmiprvse /regserver                                 ...

Unable to transfer Schema master role from Primary Domain Controller to Additional domain controller (backup server) In Windows Server

Issue: Unable to transfer Schema master role from PDC to ADC. Symptoms: You will get below error while transferring Schema master using NTDSUTIL fsmo maintenance: seize schema master Attempting safe transfer of schema FSMO before seizure. ldap_modify_sW error 0x32(50 (Insufficient Rights). Ldap extended error message is 00002098: SecErr: DSID-0315137D, problem 4003 (INSUFF_ACCESS_RIGHTS), data 0 Resolution: Add your user to Enterprise admin  group in Active directory to resolve this issue.

Configuring Service Connection Point Role in System Center Configuration Manager 1702 Version

In Today’s guide, we will learn about Installing Service connection point role in Configuration Manager version 1702 . Using Service connection point role, we can keep the Configuration Manager up to date with latest updates. Before moving forward, we will understand about the Service Connection Point role in brief. What is Service Connection Point Role? A service connection point connects Configuration Manger to Microsoft cloud services and is used for Microsoft Intune subscription and servicing, and to update your Configuration Manager installation. This will help you in keep your Configuration Manager installation up-to date with latest updates. To install Service Connection Point Role, follow the below steps . Open Configuration Manager Console. From Workspace, Click on Administrations as shown in below screenshot In Navigation Pane – expand Site Configuration – Right click on Sites – and click on Add Site System Roles to proceed further. On General Screen, provide or...