Use-SCStopVM
Changes a virtual machine from its current state to the Stopped state.
Syntax
Use-SCStopVM
[-VM] <VM>
[-RunAsynchronously]
[-JobVariable <String>]
[-PROTipID <Guid>]
[<CommonParameters>]
Description
The Use-SCStopVM cmdlet shuts down a virtual machine in System Center Virtual Machine Manager. This cmdlet changes the virtual machine to the Stopped state regardless of the current state.
Examples
Example 1: Move a virtual machine to the Stopped state
PS C:\> $VM01 = Get-SCVirtualmachine -Name "ContosoVM01"
PS C:\> Use-SCStopVM -VM $VM01
The first command gets the virtual machine named ContosoVM01, and then stores it in the $VM01 variable. The virtual machine could be in any state.
The second command moves the virtual machine in $VM01 to the Stopped state.
Parameters
-JobVariable
Specifies a variable in which job progress is tracked and stored.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PROTipID
Specifies the ID of the Performance and Resource Optimization tip (PRO tip) that triggered this action. This parameter lets you audit PRO tips.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RunAsynchronously
Indicates that the job runs asynchronously so that control returns to the command shell immediately.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VM
Specifies a virtual machine object.
Type: | VM |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |