Created
July 9, 2016 21:47
-
-
Save gaelcolas/1b085e4cd3439ec5fbe00bd08875fde6 to your computer and use it in GitHub Desktop.
Create VM on Diff disk and attach unattendxml iso before starting
This file contains 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
New-VHD -Differencing -ParentPath .\BaseWMF5.vhd -Path .\BaseWMF5_diff.vhd | |
New-VM -Name TestBase -BootDevice IDE -VHDPath .\BaseWMF5_diff.vhd -SwitchName inet -Path .\hyperv\ | |
set-VMDvdDrive -VMName TestBase -Path .\Unattendxml.iso | |
Start-VM TestBase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment