Get-Appv Client Package

Returns App-V Client Packages.

Syntax

Get-AppvClientPackage
   [[-Name] <String>]
   [[-Version] <String>]
   [-All]
   [<CommonParameters>]
Get-AppvClientPackage
   [-PackageId] <Guid>
   [[-VersionId] <Guid>]
   [-All]
   [<CommonParameters>]

Description

The Get-AppvClientPackage cmdlet returns a set of Microsoft Application Virtualization (App-V) Client Packages based on the criteria provided.

Examples

Example 1: Get packages that have names that match a string

PS C:\> Get-AppvClientPackage -Name "MyApp*" -All

This command gets the set of packages that have names that start with the string MyApp.

Example 2: Get a specific version of a package by name

PS C:\> Get-AppvClientPackage -Name "MyApp" -Version 4

This command gets the version 4 of the package named MyApp.

Example 3: Get a package by using its package ID

PS C:\> Get-AppvClientPackage -PackageID 793afd37-bd68-4ea1-859a-669f6afd0aa8

This command gets the package with the package ID of 793afd37-bd68-4ea1-859a-669f6afd0aa8.

Required Parameters

-PackageId

Specifies the GUID that uniquely identifies the package. It can be found in the package manifest or by opening the package in the App-V Sequencer. The package ID is shared by all versions of a package.

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

Optional Parameters

-All

Indicates that the cmdlet uses the set of all packages added to the computers as the searchable set. If not provided, the cmdlet only uses packages that are entitled to the current user.

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

Specifies the friendly name of the package given during Sequencing time. 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 an App-V package in one specific lineage. If you do not specify this parameter, the cmdlet operates on available versions of the package on the target computer.

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

Specifies the GUID that differentiates a package version from other versions, whether older, newer, or of a different lineage. If you do specify this parameter, the cmdlet operates on all versions of a package.

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

Outputs

Microsoft.AppV.AppvClientPowerShell.AppvClientPackage

Notes

  • If you do not specify any parameters, the cmdlet returns a set of all packages on the computer.
  • The cmdlet checks that you have permissions to perform the specific action. If not, the cmdlet returns the following error: The action could not be performed due to current App-V permissions. Please modify the permissions and try the operation again.
  • If the cmdlet cannot find the package, the cmdlet returns the following error: The specified package(s) could not be found. An error code is returned.