Print all installed applications

Joined
Feb 11, 2019
Messages
1
Reaction score
0
Does anyone know how I can print out Control Panel\Programs\Programs and Features in Windows 10? I did the wmic thing, but it does not list the features and all programs. Sure hope someone knows this. :)
 

Attachments

  • Screenshot 2019-02-11 14.41.56.png
    Screenshot 2019-02-11 14.41.56.png
    358.4 KB · Views: 213

Ian

Administrator
Joined
Feb 23, 2002
Messages
19,873
Reaction score
1,499
Welcome to the forum @oopshoopes :).

You maybe able to get this list by using PowerShell. If you right click the start button and select PowerShell, then run the following command:

Code:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\InstalledApps.txt

This should generate a list of all applications installed and then save it to a .txt file located at C:\InstalledApps.txt which you can then load in a text editor and print.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top