mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
6 lines
211 B
PowerShell
Executable File
6 lines
211 B
PowerShell
Executable File
$VMName = "debian"
|
|
$WarningPreference = 'SilentlyContinue' # If VM already stopped
|
|
Stop-VM $VMName -Force
|
|
Remove-VM $VMName -Force
|
|
Remove-Item -Path "C:\VirtualMachines\$VMName" -Recurse
|
|
exit 0 # success |