mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-22 17:33:08 -05:00
8 lines
195 B
PowerShell
8 lines
195 B
PowerShell
Param(
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$VmId
|
|
)
|
|
|
|
# Shuts down virtual machine regardless of any unsaved application data
|
|
$VM = Get-VM -Id $VmId -ErrorAction "Stop"
|
|
Stop-VM $VM -Force
|