How to Generate a List of All Software Installed on a PC

Windows allows you to generate a list of all installed software in just a few clicks. Here are the two best ways to get a list of all software installed on your computer. 1. Using Command Prompt We will use the Command Prompt utility to get a list of all installed software on a system. […] The post How to Generate a List of All Software Installed on a PC appeared first on TechViral.

How to Generate a List of All Software Installed on a PC
Why the Hen Does Not Have Teeth Story Book

WHY THE HEN DOES NOT HAVE TEETH STORY BOOK

It’s an amazing story, composed out of imagination and rich with lessons. You’ll learn how to be morally upright, avoid immoral things, and understand how words can make or destroy peace and harmony.

Click the image to get your copy!

Why the Hen Does Not Have Teeth Story Book

WHY THE HEN DOES NOT HAVE TEETH STORY BOOK

It’s an amazing story, composed out of imagination and rich with lessons. You’ll learn how to be morally upright, avoid immoral things, and understand how words can make or destroy peace and harmony.

Click the image to get your copy!

Why the Hen Does Not Have Teeth Story Book

WHY THE HEN DOES NOT HAVE TEETH STORY BOOK

It’s an amazing story, composed out of imagination and rich with lessons. You’ll learn how to be morally upright, avoid immoral things, and understand how words can make or destroy peace and harmony.

Click the image to get your copy!

Windows allows you to generate a list of all installed software in just a few clicks. Here are the two best ways to get a list of all software installed on your computer.

1. Using Command Prompt

We will use the Command Prompt utility to get a list of all installed software on a system.

1. Type CMD on Windows Search. Right-click on it and select Run as administrator.

open cmd

2. Type in the given command and press Enter

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

cmd command

3. Once you’ve finished, go to the C: Drive and find the text file named InstalledSoftwareList. The list will contain the names of all installed software.

InstalledSoftwareList

4. To generate a CSV file for the same, enter the command –

wmic product get name,version /format:csv > C:\Computername%.csv

generate a CSV file

2. Using PowerShell

Like the Command Prompt, you can use Windows PowerShell to generate a list of all installed software on your PC.

1. Type PowerShell in Windows Search. Right-click on it and select Run as Administrator.

PowerShell

2. Copy and paste the command given below and press Enter.

Get-WmiObject -Class Win32_Product | Select-Object -Property Name > C:\InstalledSoftwareList.txt

PowerShell Window

3. If you don’t see a text file on the C: Drive, execute the command below on Windows PowerShell.

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

This guide explains how to generate a list of all programs installed on Windows. If you have any questions, let us know in the comment box below.

The post How to Generate a List of All Software Installed on a PC appeared first on TechViral.

What's Your Reaction?

like

dislike

love

funny

angry

sad

wow