Share via


How to find out if a user installed a Store app?

Question

Thursday, July 2, 2020 7:42 PM

My understanding of Store apps are that they are installed on a user-by-user basis.  

If Bob logs into a computer and installs the HEVC Video Extension, and then logs off, and Mary logs on and searches for that app, she will not find it installed.  Mary will have to install the app as well.  

If both Bob and Mary install the app, will the Admin be able to see they both have that app?  How can an Admin detect apps that were installed across multiple computers?

All replies (4)

Friday, July 3, 2020 4:04 AM

Gets a list of the app packages that are installed in a user profile.

Syntax

PowerShell

Get-AppxPackage
   [-AllUsers]
   [-PackageTypeFilter <PackageTypes>]
   [[-Name] <String>]
   [[-Publisher] <String>]
   [-User <String>]
   [-Volume <AppxVolume>]
   [<CommonParameters>]

S.Sengupta,Microsoft MVP Windows and Devices for IT, Windows Insider MVP


Friday, July 3, 2020 5:39 AM

Hi,

Get-AppxPackage will provide you a list of the app packages that are installed in a user profile. To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions.

This cmdlet returns an AppxPackage object that contains information, including the full name of the app package.

 

Example 1: Get all app packages for every user account

PS C:\ Get-AppxPackage -AllUsers

 

Example 2: Get an app package for a specific a user

PS C:\ Get-AppxPackage -Name "Package17" -User "Contoso\EvanNarvaez"

 

Reference link:

/en-us/powershell/module/appx/get-appxpackage?view=win10-ps

 

Thanks,

Jenny

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact [email protected].


Wednesday, July 8, 2020 8:17 AM

Hi,

Is there any update? Have you got a chance to verify above suggestions?

 

Please feel free to let us know if more assistance needed.

 

Thanks,

Jenny

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact [email protected].


Thursday, July 16, 2020 7:36 AM

Hello,

Hope you all well. I am checking to see how things are going there on this post.

 

You can click “Mark as answer” if any of above reply is helpful. It would make this reply to the top and easier to be found for other people who has the similar problem.

 

This "Remote Desktop Services (Terminal Services)" Forum will be migrating to a new home on Microsoft Q&A, please refer to this sticky post for more details.

 

Thanks,

Jenny

"Remote Desktop Services (Terminal Services)" forum will be migrating to a new home on Microsoft Q&A!

We invite you to post new questions in the "Remote Desktop Services (Terminal Services)"  forum's new home on Microsoft Q&A!

For more information, please refer to the sticky post.