Get-AppvClientApplication
Get-AppvClientApplication is accessible with the help of AppVClient module. To configure AppVClient, go through this link.
Synopsis
Returns applications that are part of App-V Client Packages.
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.
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 |
| 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 |
| 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 |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Syntax
Get-AppvClientApplication [[-Name] <String>] [[-Version] <String>] [-All] [<CommonParameters>]
——————-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.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Get-AppvClientApplication

You can also read about
- Get-AppvClientConfiguration