mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
4 lines
266 B
PowerShell
Executable File
4 lines
266 B
PowerShell
Executable File
$VMName = "debian"
|
|
Get-ChildItem "C:\packer\$VMName\Virtual Machines\*.vmcx" | Import-VM -Copy -VhdDestinationPath "C:\VirtualMachines\$VMName\Virtual Hard Disks" -VirtualMachinePath "C:\VirtualMachines\$VMName" -GenerateNewId
|
|
Start-VM $VMName
|
|
exit 0 # success |