Get-AppvClientApplication

Returns applications that are part of App-V Client Packages.

Syntax

Get-AppvClientApplication
   [[-Name] <String>]
   [[-Version] <String>]
   [-All]
   [<CommonParameters>]

Description

The Get-AppvClientApplication cmdlet returns a set of applications that are part of Microsoft Application Virtualization (App-V) Client Packages, based on the criteria provided.

Examples

Example 1: Get a version of an application for the current user

PS C:\> Get-AppvClientApplication -Name "AppName" -Version 1

This command gets the application on the client that is published to the user and has the name AppName and is version 1.

Example 2: Get all applications

PS C:\> Get-AppvClientApplication -All

This command gets all of the applications on the client.

Parameters

-All

Indicates that the cmdlet returns all applications that have been added to the computer, not just those that are visible to the current user.

Type:SwitchParameter
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

Specifies the name of the application. This value is obtained from the package manifest.

Type:String
Position:0
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Version

Specifies the version of the application. If you do not specify this parameter, the cmdlet operates on all available versions of the applications on the target computer.

Type:String
Position:1
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

Microsoft.AppV.AppvClientPowerShell.AppvClientApplication