Edit

Share via


Get-AppvClientApplication

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

Syntax

Default (Default)

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.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Name

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

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:0
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments: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.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:1
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Outputs

Microsoft.AppV.AppvClientPowerShell.AppvClientApplication