Created
August 25, 2017 09:25
-
-
Save mockmyberet/e7397ee70a175a2300ea92eebb99fdfc to your computer and use it in GitHub Desktop.
A quick script I wrote today to quickly build some VMs for my local Hyper-V lab running in Windows 10.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 2.0 -Modules Hyper-V | |
function New-VMFromScratch | |
{ | |
param | |
( | |
[String] | |
[Parameter(Mandatory,HelpMessage='Enter the name of the local VM.',ValueFromPipeline,ValueFromPipelineByPropertyName)] | |
$VMName | |
) | |
begin | |
{ | |
$VMName = $VMName.ToUpper() | |
} | |
process | |
{ | |
$null = New-VHD -Path C:\Hyper-V\$VMName.vhdx -SizeBytes 40GB -Dynamic | |
$null = New-VM -Name $VMName -MemoryStartupBytes 1GB -BootDevice CD -SwitchName LAN -Path C:\Hyper-V\ -Generation 2 -NoVHD | |
$null = Get-VMDvdDrive -VMName $VMName | | |
ForEach-Object -Process { | |
Remove-VMDvdDrive -VMName $PSItem.VMName -ControllerNumber $PSItem.ControllerNumber -ControllerLocation $PSItem.ControllerLocation | |
} | |
$null = Add-VMDvdDrive -VMName $VMName -ControllerNumber 0 -ControllerLocation 1 -Path C:\Hyper-V\ISOs\en_windows_server_2016_x64_dvd_9718492.iso | |
$null = Add-VMHardDiskDrive -VMName $VMName -ControllerNumber 0 -ControllerLocation 0 -Path C:\Hyper-V\$VMName.vhdx | |
$null = Set-VM -Name $VMName -ProcessorCount 2 -DynamicMemory -MemoryMinimumBytes 256MB -MemoryMaximumBytes 2gb -AutomaticStartAction Start -CheckpointType Disabled -AutomaticStopAction ShutDown | |
$VMDVD = Get-VMDvdDrive -VMName $VMName | |
$VMVHD = Get-VMHardDiskDrive -VMName $VMName | |
$null = Set-VMFirmware -VMName $VMName -BootOrder $VMDVD, $VMVHD | |
Get-VM -Name $VMName | |
} | |
end | |
{ | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment