PowerShell Logo Small

Get-VMIntegrationService



This is the built-in help made by Microsoft for the command 'Get-VMIntegrationService', in PowerShell version 3 - as retrieved from Windows version 'Microsoft Windows Server 2012 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets the integration services of a virtual machine or snapshot.

SYNTAX


Get-VMIntegrationService [-VMName] <String[]> [[-Name] <String[]>] [-ComputerName <String[]>] [<CommonParameters>]
Get-VMIntegrationService [-VM] <VirtualMachine[]> [[-Name] <String[]>] [<CommonParameters>]
Get-VMIntegrationService [-VMSnapshot] <VMSnapshot> [[-Name] <String[]>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


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



<

RELATED LINKS






REMARKS

<

Examples


Example 1

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



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




Example 2

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



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




Example 3

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



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