Get-VM

Get-VM

Gets the virtual machines from one or more Hyper-V hosts.

Syntax

Parameter Set: Name
Get-VM [[-Name] <String[]> ] [-ComputerName <String[]> ] [ <CommonParameters>]

Parameter Set: ClusterObject
Get-VM [-ClusterObject] <PSObject> [ <CommonParameters>]

Parameter Set: Id
Get-VM [[-Id] <Guid> ] [-ComputerName <String[]> ] [ <CommonParameters>]

Detailed Description

The Get-VM cmdlet gets the virtual machines from one or more Hyper-V hosts.

Parameters

-ClusterObject<PSObject>

Specifies the cluster resource or cluster group of the virtual machine to be retrieved.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-ComputerName<String[]>

Specifies one or more Hyper-V hosts from which virtual machines are to be retrieved. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer — use “localhost” or a dot (“.”) to specify the local computer explicitly.

Aliases

none

Required?

false

Position?

named

Default Value

.

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Id<Guid>

Specifies the identifier of the virtual machine to be retrieved.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByPropertyName, ByValue)

Accept Wildcard Characters?

false

-Name<String[]>

Specifies the name of the virtual machine to be retrieved.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

true

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Microsoft.Virtualization.Powershell.VirtualMachine

Examples

Example 1

This example gets all virtual machines on the local virtual machine host.

PS C:\> Get-VM

Example 2

This example gets all virtual machines on Hyper-V host Server1 that are running.

PS C:\> Get-VM –ComputerName Server1 | Where-Object {$_.State –eq ‘Running’}

Example 3

This example gets all virtual machines in the cluster to which the local Hyper-V host is joined.

PS C:\> Get-ClusterGroup | ? {$_.GroupType –eq ‘VirtualMachine’ } | Get-VM