Get-SCVMConsoleInformation

Displays VMM console information about a virtual machine.

Description

The Get-SCVMConsoleInformation cmdlet displays System Center Virtual Machine Manager (VMM) console information about a virtual machine. 

For more information about Get-SCConsoleInformation, type: "Get-Help Get-SCVMConsoleInformation -online".

Parameters

VM

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a virtual machine object.

VMMServer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a VMM server object.

Examples

1: Get VMM console information for a specified virtual machine.
PS C:\> $VM = Get-SCVirtualMachine -Name "VM01"
PS C:\> Get-SCVMConsoleInformation -VM $VM
The first command gets the virtual machine object named VM01 and stores the object in the $VM variable.

The second command displays the VMM console information about VM01 to the user.

See Also