Contents tagged with azure image
-
Handy Powershell Commands for Windows azure
List all images:
Get-AzureVMImage | Select ImageName
To build the image:
$family="Windows Server 2012 R2 Datacenter"$image=Get-AzureVMImage | where { $_.ImageFamily -eq $family } | sort … more