Skip to content

Instantly share code, notes, and snippets.

@goyalmohit
Created January 3, 2017 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalmohit/2c0f2bedacfb6c4d573d4e26e96a0891 to your computer and use it in GitHub Desktop.
Save goyalmohit/2c0f2bedacfb6c4d573d4e26e96a0891 to your computer and use it in GitHub Desktop.
#create quick azure vm
$adminUser = "itadmin"
$password = "itadmin@123"
$serviceName = "metavrsewebqa"
$location = "north europe"
$size = "Small"
$vmName = "metavrse-web-01"
$imageFamily = "Windows Server 2012 R2 Datacenter"
New-AzureQuickVM -Windows `
-ServiceName $serviceName `
-Name $vmName `
-ImageName $imageName `
-AdminUsername $adminUser `
-Password $password `
-InstanceSize $size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment