Return a set of Microsoft Application Virtualization (App-V) Client Packages.
Syntax Get-AppvClientPackage [[-Name] String] [[-Version] String] [-All] [CommonParameters ] Get-AppvClientPackage [-PackageId] Guid [[-VersionId] Guid] [-All] [CommonParameters ] key -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. -Name The friendly name of the package given during Sequencing time. This value is obtained from the package manifest. -PackageId 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. -Version 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. -VersionId 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.
Standard Aliases for Get-AppvClientPackage: none
Get packages that have names that match a string:
PS C:\> Get-AppvClientPackage -Name "MyApp*" -All
Get a specific version of a package by name:
PS C:\> Get-AppvClientPackage -Name "MyApp" -Version 4
Get a package using its package ID:
PS C:\> Get-AppvClientPackage -PackageID 793afd37-bd64-4ea1-859a-649f6afd0aa8
"History teaches us that men and nations behave wisely once they have exhausted all other alternatives" ~ Abba Eban
Add-AppvClientPackage - Add a package to a computer running the App-V client.
Mount-AppvClientPackage - Load a package into the App-V cache.
Publish-AppvClientPackage - Publish the App-V package.
Remove-AppvClientPackage - Remove the package from a computer.
Repair-AppvClientPackage - Reset the user settings of a package.
Set-AppvClientPackage - Configure an App-V Client Package.
Stop-AppvClientPackage - Shut down virtual environments for specified packages.
Unpublish-AppvClientPackage - Remove the extension points for packages.
Get-AppxPackage - List the app packages installed in a user profile.