PowerShell Logo Small

Enable-VMIntegrationService



This is the built-in help made by Microsoft for the command 'Enable-VMIntegrationService', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 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

Enables an integration service on a virtual machine.

SYNTAX


Enable-VMIntegrationService [-Name] <String[]> [-VMName] <String[]> [-ComputerName <String[]>] [-Passthru] [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-VMIntegrationService [-Name] <String[]> [-VM] <VirtualMachine[]> [-Passthru] [-Confirm] [-WhatIf] [<CommonParameters>]
Enable-VMIntegrationService [-VMIntegrationService] <VMIntegrationComponent[]> [-Passthru] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Enable-VMIntegrationService cmdlet enables an integration service on a virtual machine.



<

RELATED LINKS


Online Version: http://go.microsoft.com/fwlink/?LinkID=306836

REMARKS

<

Examples


Example 1

PS C:\>Enable-VMIntegrationService -Name Shutdown,VSS -VMName Test1



Enables integration services Shutdown and VSS on virtual machine Test1.




Example 2

PS C:\>Get-VMIntegrationService Shutdown,Vss -VMName Test1 | Enable-VMIntegrationService



Enables integration services Shutdown and VSS on virtual machine Test1.




Example 3

PS C:\>Get-VM Test1 | Enable-VMIntegrationService Shutdown,VSS



Enables integration services Shutdown and VSS on virtual machine Test1.