PowerShell

How to create a list of installed programs with PowerShell on Windows 10

How to create a list of installed programs with PowerShell on Windows 10

If you own a Windows 10 PC, you might have installed many programs over time but it's a little bit tricky to keep remember all of them. Through Windows PowerShell application, you can generate the list of installed programs on the computer which can be useful for various purposes. For example, When you need to set up a new computer you may want to ensure you're not missing any essential program to install. In this guide, we will show you an easy way to view installed programs with PowerShell on Windows 10.

Create a list of installed programs with PowerShell

If you want to view your installed programs with PowerShell, follow the below suggestions:

First of all, right-click on the Start button and select Run from the power user menu.

In the text field, type PowerShell and then press Ctrl+Shift+Enter keyboard shortcut to open the Windows PowerShell as an administrator.

In an empty PowerShell prompt, copy and paste the following PowerShell commands:

Get-AppxPackage -AllUsers | Select Name, PackageFullName

Now press the Enter key to view a list of all programs installed on your computer.

Furthermore, if you want to list out all the programs with their details then type the below command:

Get-AppxPackage -AllUsers

Now press Enter and you will see a list of all the programs with their details on your computer screen.

It will show you the Publisher name, software architecture, resourceId, and its version information.

You will also get the full name of the Package, Install Location, PackageFamilyName, PublisherId, and even the PackageUserInformation.

If the list is so long and you want to search for any specific programs installed on your computer then type the below command inside the elevated Powershell window -

Get-AppxPackage -Name *Program-Name*

In the above command-line, replace the Program-Name with the name of the application you want to search.

For better understanding, type the below command-line inside the elevated Powershell window -

Get-AppxPackage -Name *Store*

Now press the Enter key and it will show you the detailed information regarding the applications related to Office Programs.

Read next: How to Export and Backup Device Drivers using PowerShell.

That's it. Hope it helps.

Kuinka näyttää OSD-peitto koko näytön Linux-sovelluksissa ja peleissä
Koko näytön pelien pelaaminen tai sovellusten käyttäminen häiriöttömässä koko näytön tilassa voi estää sinut paneelissa tai tehtäväpalkissa näkyvistä ...
Viisi parasta pelin kaappauskorttia
Olemme kaikki nähneet ja rakastaneet suoratoistopelejä YouTubessa. PewDiePie, Jakesepticye ja Markiplier ovat vain joitain huippupelaajista, jotka ova...
How to Develop a Game on Linux
A decade ago, not many Linux users would predict that their favorite operating system would one day be a popular gaming platform for commercial video ...