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?
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.
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.
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.
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
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.
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).
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?
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
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With