PowerShell/scripts/import-vm.ps1
2024-10-01 15:11:03 +02:00

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