Link to home
Create AccountLog in
Avatar of itbabe
itbabe

asked on

Which command should I use to list all appv packages that are installed on a client machine.

please advise
Avatar of aravind anche
aravind anche
Flag of United States of America image

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


http://app2pack.blogspot.com/2015/10/list-applications-in-use-app-v-46-app-v.html
The following PowerShell command returns the specified connection group and members:

(Get-AppvClientConnectionGroup -GroupId {group guid} -VersionId {version guid}).GetPackages()
ASKER CERTIFIED SOLUTION
Avatar of Rajul Raj
Rajul Raj
Flag of United Arab Emirates image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer