Skip to content

Get list of Installed Applications on your Windows without any third-party software


windows 10 cmd install list

Throughout the course of time, we install numerous applications on our Laptop/ PC. We may not remember the application that we have installed after a certain period of time. The task was completed at that time and that’s all. Some applications may consume a lot of resources, some may run on background, and some may be of no use at all. Using the control panel you can easily view all the applications on the device including system application and installed application altogether. On the smartphone, there’s an option where you can easily view installed applications. On Windows 10 you can also view installed programs. In fact, you can create a list of installed applications and save. If you are planning to reinstall Windows this list will be of great help for you. To create the list of installed applications on your device you do not have to install any third-party software. You can simply use Power Shell and Windows Command Prompt.

Windows Command Prompt

Command Prompt is a powerful command-line interpreter application used for executing different commands.  It is officially called Windows Command Processor. The command lines you type are not case sensitive. Using CMD, you can do most of the action you do using GUI.

Windows PowerShell

Windows PowerShell is a Windows command line designed especially for system administrators. This includes an interactive prompt and scripting environment. With PowerShell, you can access the file system, other data stores (Registry, Digital Signature), etc.

How to create a list of installed programs on Windows 10 using cmd?

  • Run command prompt (cmd) as administrator.
    You can access the Windows command prompt in numerous ways. For more information, please read 10 Cool Ways to Open Command Prompt in Windows!
  • Type wmic and hit enter. Here wmic refers to the Windows Management Instrumentation Command-line tool.
  • Enter the following command and press Enter.

/output:C:\InstallList.txt product get name,version

windows command prompt

  • The ‘Install List’ will be saved on your C drive. You can change the file destination as /output:_, enter the drive where you want to save the file. Wait until wmic:root/cli> appears on the next line.

windows command prompt how to display installed app list

  • Go the drive and open the Install List to view the list of installed applications.

How to create a list of installed programs on Windows 10 using Powershell?

  • Click on Windows (flag) icon and type ‘Windows PowerShell’ and run it as administrator as shown below.

windows powershell

  • Type or copy-paste the following command,

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

windows 10 powershell app list

  • Now you can see the list of all installed applications on your system. It also has the respective installed date and name of the publisher.
  • To export this list you can to write the following command,

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

windows 10 powershell how to displat installed app list
Powershell Installed App List
  • Here replace C:\Users\Aashish\Desktop\InstalledPrograms-PS.txt with the path and name you want to use for your file.

You can use either command prompt or Powershell. Both of these are easy to use method to retrieve a list of installed applications in your device. You don’t have to do any hassle of installing third-party software. If you any confusion/ queries regarding retrieving the list of Installed Application please let us know in the comments. We will try our best to help you.


Up in the line:


More on Tutorials:


Leave a Reply

Your email address will not be published. Required fields are marked *

*
*
*