Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Microsoft Application Virtualization

app-virtual.blogspot.com/2013/06/pp-v-50-client-powershell-commands.html

App-V 5.0 now also comes with the possibility of interaction with the client, server, and
sequencer via PowerShell cmdlets. For a full list of App-V 5.0 client PowerShell cmdlets, open
PowerShell and run the following commands (in order):

· Import-Module AppVClient
· Get-Module AppVClient | Import-Module –Verbose.
There is also a PowerShell module for converting packages.

This will list all the commands available for the AppVClient module these are as follows:

The following cmdlets are available for the client:


Add-AppvClientPackage
Set AppvClientPackage
Publish AppvClientPackage
Unpublish-AppvClientPackage
Remove-AppvClientPackage
Mount AppvClientPackage
Get AppvClientPackage
Stop AppvClientPackage
Start AppvVirtualProcess
Add-AppvPublishingServer
Set AppvPublishingServer
Get AppvPublishingServer
Sync AppvPublishingServer
Add-AppvClientConnectionGroup
Get AppvClientConnectionGroup
Stop AppvClientConnectionGroup
Mount AppvClientConnectionGroup
Remove-AppvClientConnectionGroup
Disable AppvClientConnectionGroup
Enable AppvClientConnectionGroup

The following cmdlets are available for the server:


Grant AppvServerConnectionGroup
Publish AppvServerConnectionGroup
Unpublish-AppvServerConnectionGroup
Update AppvServerConnectionGroup
New AppvServerConnectionGroup
Set AppvServerConnectionGroup
Remove-AppvServerConnectionGroup
Get AppvServerPackage
Get AppvServerConnectionGroup

The following cmdlets are available for the sequencer:


Expand AppvSequencerPackage

The following cmdlets are available for the Package Converter:


ConvertFrom LegacyAppvPackage
Test LegacyAppvPackage

Example syntax, description, etc. type Get-Help followed by one of the commands listed above,
e.g. PS C:\windows\system32> Get-Help Add-AppvClientConnectionGroup displays the
following:

NAME
Add-AppvClientConnectionGroup

SYNOPSIS
Creates a composition of multiple packages on a computer running the App-V client.
SYNTAX
Add-AppvClientConnectionGroup [-Path] <string> [-Confirm] [-WhatIf]
[<CommonParameters>]
DESCRIPTION
Adds a new App-V Connection group. In order for the group to be applied, all packages in the
group must be added to the target computer, and must not be running.

This cmdlet can also be used to update an already existing Connection group definition.
RELATED LINKS
Get-AppvClientConnectionGroup
Set-AppvClientConnectionGroup
Remove-AppvClientConnectionGroup

REMARKS
To see the examples, type: "get-help Add-AppvClientConnectionGroup -examples".
For more information, type: "get-help Add-AppvClientConnectionGroup -detailed".
For technical information, type: "get-help Add-AppvClientConnectionGroup -full".
For online help, type: "get-help Add-AppvClientConnectionGroup -online"

You might also like