Get-VMIntegrationService

Get-VMIntegrationService

Gets the integration services of a virtual machine or snapshot.

Syntax

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

Parameter Set: VMObject
Get-VMIntegrationService [-VM] <VirtualMachine[]> [[-Name] <String[]> ] [ <CommonParameters>]

Parameter Set: VMSnapshot
Get-VMIntegrationService [-VMSnapshot] <VMSnapshot> [[-Name] <String[]> ] [ <CommonParameters>]

Detailed Description

The Get-VMIntegrationService cmdlet gets the integration services of a virtual machine or snapshot.

Parameters

-ComputerName<String[]>

Specifies one or more Hyper-V hosts on which the integration services 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

-Name<String[]>

Specifies the name of the integration service to be retrieved.

Aliases

none

Required?

false

Position?

2

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

true

-VM<VirtualMachine[]>

Specifies the virtual machine from which the integration services are to be retrieved.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-VMName<String[]>

Specifies the name of the virtual machine from which the integration services are to be retrieved.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

true

-VMSnapshot<VMSnapshot>

Specifies the snapshot from which the integration services are to be retrieved.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

<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.IntegrationService

Examples

Example 1

Gets the out-of-date integration services from virtual machine TestVM.

PS C:\> Get-VMIntegrationService –VMName TestVM | Where-Object {$_.SecondaryOperationalStatus –eq ‘ProtocolMismatch’}

Example 2

Gets the Shutdown and VSS integration services from virtual machine TestVM.

PS C:\> Get-VM –Name TestVM | Get-VMIntegrationService –Name Shutdown,VSS

Example 3

Gets the Shutdown and VSS integration services from the snapshot Before applying updates of virtual machine TestVM.

PS C:\> Get-VMSnapshot –VMName TestVM –Name ‘Before applying updates’ | Get-VMIntegrationService Shutdown,VSS