Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to use PowerShell to find packages in App-V v5 client connection groups


View products that this article applies to.

Summary

This article describes how to find packages in Microsoft App-V v5 client connection groups using PowerShell.

↑ Back to the top


More Information

On the App-V Server one can examine which packages are in a connection group via the App-V server console UI. At the current time equivalent functionality does not exist in the App-V v5 client console UI. However, you can still obtain this information on the App-V v5 client using PowerShell.

The following PowerShell command returns all enabled connection groups and their members:

(Get-AppvClientConnectionGroup).GetPackages()

The following PowerShell command returns the specified enabled connection group and members:

(Get-AppvClientConnectionGroup -Name {cg name}).GetPackages()

where {cg name} is replaced with a group name

The following PowerShell command returns the specified connection group and members:

(Get-AppvClientConnectionGroup -GroupId {group guid} -VersionId {version guid}).GetPackages()

where {group guid} is replaced with a GroupId and {version guid} is replaced with a VersionId

↑ Back to the top


Keywords: kb

↑ Back to the top

Article Info
Article ID : 2780809
Revision : 2
Created on : 3/27/2020
Published on : 3/27/2020
Exists online : False
Views : 341