Tech Support Forum banner

Print a list of Installed programs, Win 10 Pro.

1.7K views 13 replies 8 participants last post by  Ravisunny3  
#1 ·
I have done this before but cannot remember how I did it. Must be an age thing.
Can someone refresh my memory?
Thanks.
 
#2 ·
Control Panel>Programs & Features>Right click empty space and choose the view you want. If it fits, Print Screen> Otherwise change View
 
#4 · (Edited)
If you want a list of your installed programs, please try the following ....

  • Click Search and type Powershell in the search box
  • Right click on the Powershell icon and select Run as Adminstrator
  • A Powershell window will open
  • Copy/Type in the following command ...

Get-Package | Select Name, PackageFullName > "C:\ProgList.txt"

  • ... hit Return
  • A file named ProgList.txt will be created in the C:\ folder

PS. If you want a list of your Apps use the command ....

Get-AppxPackage -AllUsers | Select Name, PackageFullName > "C:\AppList.txt"
 
#5 ·
Thanks Gary R,
That worked but I found my notes and they had a simpler method. in a Dos window type C:\apps.txt then hit enter. The go to C Drive root and double click on apps.txt. Then it can be copied and pasted in Word or Excel or where ever.
 
#6 ·
Going to have to be a bit more than that ...

C:\apps.txt

.... is just a location, not a Command, so if you type C:\apps.txt into a command window, all it will do is tell you that it does not recognise it ....

apps.txt is not recognized as an internal or external command, operable program or batch file.
.... so if you have an apps.txt file present, and it is populated, then it must have been created at some earlier time by some other command.
 
#8 ·
If interested in a 3rd party app, you can download Belarc Advisor. Which lists all your apps and their product keys.
 
#10 ·
If interested in a 3rd party app, you can download Belarc Advisor. Which lists all your apps and their product keys.
I have used Belarc for years. I run it periodically on all my operational machines. It provides a lot of information. I save each set of results as PDFs and save them all.
 
#9 ·
FRST (which we use for analysing machines for malware) also contains a list of all the installed programs in its Addition.txt logfile.

Example (partial list from my PC) ...

Code:
==================== Installed Programs ======================

(Only the adware programs with "Hidden" flag could be added to the fixlist to unhide them. The adware programs should be uninstalled manually.)

7-Zip 22.01 (x64) (HKLM\...\7-Zip) (Version: 22.01 - Igor Pavlov)
Amazon Kindle (HKU\S-1-5-21-3200370660-1900560348-3654660666-1001\...\Amazon Kindle) (Version: 1.33.0.62002 - Amazon)
CCleaner (HKLM\...\CCleaner) (Version: 6.23 - Piriform)
EditPad Lite 8 v.8.3.1 (HKLM\...\EditPad Lite 8) (Version: v.8.3.1 - Just Great Software)
GIMP 2.10.32-1 (HKU\S-1-5-21-3200370660-1900560348-3654660666-1001\...\GIMP-2_is1) (Version: 2.10.32 - The GIMP Team)
Hash Calculator (HKLM-x32\...\{157D4DE7-1212-4B6E-9386-227606A800D0}}_is1) (Version:  - Ashisoft)
 
#11 ·
I did a little search. Would this be the command you were after?

Open CMD » wmic product get name,version

There are a bunch of variation possible (scroll down a bit).