Contents tagged with powershell
-
Another VM Creation Powershell Script (untested)
Example 1I need a PowerShell command set to create the initial virtual machine for an Active Directory domain controller that: •Uses the Windows Server 2012 R2 Datacenter image.•Has the name AZDC1.• … more
-
Auto-create VM with instance level IP (full script)
# tested and working, manually get image name, adjust image size, instance ip works too, storage account must already exist though #Set-AzureSubscription -SubscriptionId "xxxxx-xxxxx-xxxxx-xxxxx- … more
-
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