1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-03-21 18:57:29 +01:00
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