Reputation: 523
There are ways to get the list of installed applications that come in Add/Remove Programs in ControlPanel.
But I want to get the list of installed applications from windows store too. I have not got anything so far.
Is there any way to get the list of applications installed from windows store?
Upvotes: 5
Views: 9142
Reputation: 523
Package Manager will help to get the list of metro applications;
with reference to this exchange, FindPackages
method with example:
IEnumerable<Windows.ApplicationModel.Package> packages =
(IEnumerable<Windows.ApplicationModel.Package>)packageManager
.FindPackagesForUser("");
.csproj
, and change target platform version to 8.0
:
projectname(unavailable)
.csproj
system.runtime
; if you don't find it, add a reference to its .dll
from:
%WinDir%\Microsoft.Net\assembly
%ProgramFiles(x86)%\Windows Kits\8.0\References\CommonConfiguration\Neutral\Windows.winmd
Upvotes: 6
Reputation: 469
You can run these commands on a powershell window and get the list of installed apps on a Windows 10 machine
Get-AppxPackage | ft Name, PackageFullName -AutoSize
If you want to get a list of all the apps of all the users, then use the below command.
Get-AppxPackage -AllUsers | ft Name, PackageFullName -AutoSize
Upvotes: 7