Create a Windows Server 2012 R2 VM using ARM in Azure PowerShell - Blogs
X
15Sep

Create a Windows Server 2012 R2 VM using ARM in Azure PowerShell

Hi Folks,

In this Blog Post we will learn how to create an Azure ARM Virtual Machine using Azure PowerShell.

For this, you will need an Azure Subscription and machine with Latest Azure PowerShell installed.

 

1.

Run the following script in Azure Powershell:  //Replace MyName with YourName everywhere.

Login-AzureRmAccount

 

$locName = "Central US"

$rgName = "MyName-RG"

$vnetName = "MyName-VNET"

 

#Getting the Storage Account

$StorageAccount = Get-AzureRmStorageAccount -ResourceGroupName $rgName

$StorageName = $StorageAccount.StorageAccountName

 

#Getting the Virtual Network MyName-VNET

$vnet = Get-AzureRmVirtualNetwork -Name $vnetName -ResourceGroupName $rgName

 

#Create a Public IP address

$ipname = "MyNameVM2-PIP"

$pip = New-AzureRmPublicIpAddress -Name $ipName -ResourceGroupName $rgName -Location $locName -AllocationMethod Dynamic

 

# Create A Network Interface

$nicName = "mynamevm2nic"

$nic = New-AzureRmNetworkInterface -Name $nicName -ResourceGroupName $rgName -Location $locName -SubnetId $vnet.Subnets[0].Id -PublicIpAddressId $pip.Id

 

#Get Credentails

$cred = Get-Credential -Message "Type the name and password of the local administrator account."

 

#Choose a VM name and Size

$vmName = "MyNameVM2"

$vm = New-AzureRmVMConfig -VMName $vmName -VMSize "Standard_A1"

 

$compName = "MyNameVM2"

$vm = Set-AzureRmVMOperatingSystem -VM $vm -Windows -ComputerName $compName -Credential $cred -ProvisionVMAgent -EnableAutoUpdate

 

$vm = Set-AzureRmVMSourceImage -VM $vm -PublisherName MicrosoftWindowsServer -Offer WindowsServer -Skus 2012-R2-Datacenter -Version "latest"

 

$vm = Add-AzureRmVMNetworkInterface -VM $vm -Id $nic.Id

 

$blobPath = "vhds/MyNameVM2osDisk.vhd"

$osDiskUri = $StorageAccount.PrimaryEndpoints.Blob.ToString() + $blobPath

 

$diskName = "windowsvmosdisk"

$vm = Set-AzureRmVMOSDisk -VM $vm -Name $diskName -VhdUri $osDiskUri -CreateOption fromImage

 

New-AzureRmVM –ResourceGroupName $rgName -Location $locName -VM $vm

 

2.

When prompted, enter your Azure Credentials.

VM1

 

3.

Enter MyName as the Username and  as password.

VM2

 

4.

Wait for a couple of minutes for the VM to be configured.

VM3

 

5.

To connect to your VM, Navigate to Azure portal. Click on Browse -> Virtual Machines

VM4

 

6.

Click on the VM named MyNameVM2 then click on connect. 

VM5

 

7.

Double Click the downloaded RDP file and then click on Connect.

VM6

8.

 

Click on Use another account.

VM7

 

9.

Enter MyNameVM2\MyName as username and  as password.

VM8

 

10.

Click Yes.

 

VM9

 

11.

Confirm your connection inside VM.

VM10

 

 

Related

Azure App Service Scaling Features And Capabilities

How to scale the application in Azure App Service. There are two workflows for scaling, scale up and...

Read More >

Azure App Service (Build And Host Web Apps, Mobile-Back Ends Without Managing Infrastructure)

In this blog we will see what is Azure App Service, and it’s  features and why do we use it, we can...

Read More >

Azure Blob Storage: The PowerShell Way!

Hi folks!Great to see you again.This blog post is purely based on Azure Blob Storage: The PowerShell...

Read More >

Continuous Integration/ Continuous Deployment VSTS

Following the below steps you can build and deploy your ASP.NET  app to Azure from either Visua...

Read More >

How to Sync On-premise AD with Windows Azure AD using Azure AD Connect tool

 Azure AD is a service that provides identity and access management capabilities in the cloud. ...

Read More >

Creating a Point-to-Site Connectivity using Azure Resource Manager

Configure a Point-to-Site connectivity to a VNet using PowerShell (ARM Mode)Task 1: Create a Self-Si...

Read More >

How to Create an Azure Virtual Network by using a Deployment Template

Hello Folks!In this Blog post, we will try to learn how to create an Azure V-Net using an ARM templa...

Read More >

Locking VMs and Resources Groups with Azure Resource Manager using Azure PowerShell

Hello Folks!In this blog post we will be talking about locking down your Azure Resources with Azure ...

Read More >

Microsoft Azure: Implementing Internet Facing Load Balancers using Azure Resource Manager

Howdy Folks!I was exploring Network Load Balancer in Azure Resource Manager and found out that you c...

Read More >

Microsoft Azure Stack : Power of Azure in our datacentre

Why Azure Stack?Microsoft Azure Stack is a new hybrid cloud platform product that enables our organi...

Read More >

Share

Try DevOpSmartBoard Ultimate complete Azure DevOps End-to end reporting tool

Sign Up

  • Recent
  • Popular
  • Tag
Monthly Archive
Subscribe
Name

Text/HTML
Contact Us
  • *
  • *