Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting the list of installed windows store apps

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?

like image 223
Fresher Avatar asked Jul 05 '16 06:07

Fresher


People also ask

How do I get a list of Windows apps?

Press Windows key + I to open Settings and click Apps > Apps & features. Doing so will list all programs installed on your computer, along with the Windows Store apps that came pre-installed.

How can I get a list of all programs installed on my computer?

Press the Windows key , type All Apps, and then press Enter . The window that opens has a full list of programs installed on the computer.

How do I list installed packages in Windows?

The Get-Package cmdlet returns a list of all software packages on the local computer that were installed with PackageManagement. You can run Get-Package on remote computers by running it as part of an Invoke-Command or Enter-PSSession command or script.

How to get list of all apps installed from Microsoft Store?

If you need to go generate a list of all apps installed from Microsoft Store, use the following command: Get-AppxPackage | Select Name, PackageFullName |Format-Table -AutoSize > c:\docslist-store-apps.txt

How to check installed apps on Windows 10?

If you are running Windows 10, there is a very convenient section inside Windows Settings. It collects info about all installed apps and lets you quickly get a list of them. To get there, hit Win + I on your keyboard and go to Apps – Apps and features. Here you can find the list of all installed apps, plus pre-installed from Microsoft Store.

How to view installed Microsoft apps for all users in PowerShell?

A. If you want to view a simple list* of the installed Microsoft Apps for all the users on a Windows 10 PC, give the following command in PowerShell (admin): Get-AppxPackage -AllUsers | Select Name, PackageFullName. * Note: The output of the above command will be a list with two (2) columns (see screenshot below).

Can I download apps directly from Microsoft Store?

You can directly download many commonly-used apps from Microsoft Store. However, apps from Windows Store are stored in a specified location. Where are Windows Store apps installed? How to access the Windows 11/10 Store apps location?


2 Answers

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
like image 170
Suneesh Avatar answered Oct 19 '22 08:10

Suneesh


Package Manager will help to get the list of metro applications.

With reference to this thread:

1) You can use this code snippet :
IEnumerable<Windows.ApplicationModel.Package> packages = (IEnumerable<Windows.ApplicationModel.Package>)packageManager.FindPackagesForUser("");
FindPackages Method with example

2) To use this class, change the target platform version to 8.0 in .csproj
To open .csproj, right click on the project name in the solution explorer and select unload the project. Then it will become like projectname(unavailable). Now right click and select edit .csproj file. And you can load the project again.

3) Add a reference to system.runtime
If you dont find it, you can add a reference to its dll from C:\Windows\Microsoft.Net\assembly folder.

4) Add a reference to C:\Program Files (x86)\Windows Kits\8.0\References\CommonConfiguration\Neutral\Windows.winmd

like image 5
Fresher Avatar answered Oct 19 '22 07:10

Fresher