How Can I Get a List of All Software Installed on My Computer?

Denise Wilkinson

Are you curious to know what software is installed on your computer? Whether you want to keep track of your applications or troubleshoot issues, it’s essential to have a list of all the software installed on your computer. In this tutorial, we’ll show you how to get a complete list of all the software installed on your Windows PC.

Method 1: Using Control Panel

If you are using Windows 10, 8.1, or 7, you can use the Control Panel to get a list of all the software installed on your computer. Here’s how:

  1. Step 1: Press the Windows key + X and select “Control Panel” from the menu.
  2. Step 2: Click on “Programs and Features” (Windows 10/8.1) or “Uninstall a program” (Windows 7) under the Programs category.
  3. Step 3: Wait for a few seconds until the list populates. This list shows all the programs installed on your computer, along with their sizes and installation dates.

Note:

If you want to sort this list by name, date, or size, click on any of these columns’ headers.

Method 2: Using Command Prompt

You can also use Command Prompt to generate a list of all the software installed on your computer. Here’s how:

  1. Step 1: Press Windows key + R and type “cmd” in the Run box.
  2. Step 2: Type “wmic product get name” in the Command Prompt window and press Enter. This list shows all the programs installed on your computer, along with their names.

Note:

If you want to save this list to a text file, type “wmic product get name > softwarelist.txt” in the Command Prompt window and press Enter. This will create a text file named “softwarelist.txt” in your current directory.

Method 3: Using PowerShell

If you are using Windows 10, you can use PowerShell to generate a list of all the software installed on your computer. Here’s how:

  1. Step 1: Press Windows key + X and select “Windows PowerShell (Admin)” from the menu.
  2. Step 2: Type “Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*” | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate” in the PowerShell window and press Enter. This list shows all the programs installed on your computer, along with their names, versions, publishers, and installation dates.

Note:

If you want to save this list to a CSV file, type “Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Export-Csv softwarelist.csv” in the PowerShell window and press Enter. This will create a CSV file named “softwarelist.csv” in your current directory.

In Conclusion

Now that you know how to get a list of all the software installed on your computer, you can use this information to keep track of your applications or troubleshoot issues. Whether you choose to use Control Panel, Command Prompt, or PowerShell, these methods will help you generate a comprehensive list of all the programs installed on your Windows PC.