Detecting Installations via Microsoft Store

We’d like to get a report of the applications that our users have installed via the Microsoft Store, but it doesn’t appear to be an easy way to do that.

We typically use the Installed Applications property from the Application Information - Windows analysis to get installation data, and sometime BFI in specialized cases, but it doesn’t seem like we can get info on apps installed via the MS Store. Further, MS Store installed apps appear to be sandboxed away from the registry and so there’s nothing in the registry for us to hunt for.

Has anyone been able to figure out how to get a report on MS Store installed applications?

@jimmym You can use the following PowerShell command to return the list of Apps & Packages from the Microsoft Store:

Get-AppxPackage -AllUsers | Select Name, PackageFullName, PackageUserInformation | Where-Object {$_.SignatureKind -eq 'Store'}

From this you can create your own Analysis to return the Microsoft Store installation data, in a similar manner as the Application Information - Windows analysis.