Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docset/winserver2022-ps/hyper-v/Remove-VM.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ Removes virtual machine new 1.

### Example 2
```
PS C:\> Remove-VM -Name "new 2" -Force
Remove-VM -Name "new 2" -Force
```

Removes virtual machine new 2, suppressing the confirmation prompt.

### Example 3
```
PS C:\> Get-VM -Name New* | Remove-VM -Force
Get-VM -Name New* | Remove-VM -Force
```

Removes with no confirmation prompt all virtual machines having names starting with New.
Expand Down