Generate List of Installed Programs?

feetand nches

New member
Power User
VIP
Local time
6:33 PM
Messages
555
I was trying to list all my programs because I like to do this whenever I reinstall, but never had a real good way of doing it. I used to just use the cmd, but it always takes me to long to remember how to maneuver into the Programs Folder and list everything in there. So was looking for better quicker ways of doing this. Here is the link I'm using, perhaps there is a better one here?
How to Auto-Generate a List of Installed Programs on Windows

This is what I got for this first attempt
HTML:
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. All rights reserved.

PS C:\Users\Chris> Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Obj
ect DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize

WARNING: column "InstallDate" does not fit into the display and was removed.

Second attempt I combined the two commands to try and output the text to my desktop. Nothing went to the desktop.

HTML:
PS C:\Users\Chris> Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Obj
ect DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize C:\Users\Chris\Desktop\InstalledProgram
sList.txt

C:\Users\Chris\Desktop\InstalledProgramsList.txt

Then I tried this in the cmd and that did not work either. What am I doing wrong?

HTML:
wmic:root\cli>/output:C:\Users\Chris\Documents\InstalledPrograms\InstalledProgramsWMIC.txt product get name,version
Invalid file name.
wmic:root\cli>
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
HP Pavilion dv7-6c23cl
OS
Windows 7 Home Premium 64bit
CPU
AMD A8-3520M
Motherboard
Hewlett-Packard 180B (Socket FS1)
Memory
6.00GB DDR3 @ 674MHz (9-9-9-24)
Graphics Card(s)
512MB ATI AMD Radeon HD 6620G
Sound Card
IDT High Definition Audio CODEC
Monitor(s) Displays
Generic PnP Monitor
Screen Resolution
(1600x900@60Hz)
Hard Drives
Samsung 850 EVO 250GB SSD
Mouse
Logitec M525
Internet Speed
30-75Mbps
Antivirus
Avast Free, Unfortunately
Browser
Google Chrome, Firefox, IE
I've just had a quick play and thing works for me (I'm on win10 though).

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

My Computer

Computer type
PC/Desktop
OS
Windows 11
Hi Nasty7,

I was trying to list all my programs because I like to do this whenever I reinstall, but never had a real good way of doing it. I used to just use the cmd, but it always takes me to long to remember how to maneuver into the Programs Folder and list everything in there.

I have written a batch script that does this . . .

Under the heading Programs And Software - Installed . . ., please run Programs_And_Software_Installed.bat, Option [2] from here => BATCH PROGRAMS [Standalone].

I hope this helps!
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
Fujitsu LIFEBOOK
OS
Win 7 HP SP1 64-bit Vista HB SP2 32-bit Linux Mint 18.3
CPU
Intel(R) Pentium(R) CPU P6200 @ 2.13GHz
Motherboard
FUJITSU FJNBB06
Memory
4.00 GB
Graphics Card(s)
Intel(R) Graphics Media Accelerator HD
Sound Card
[1] Realtek High Definition Audio [2] Intel(R) Display Audio
Screen Resolution
1366 x 768 x 32 bits (4294967296 colors) @ 59 Hz
Hard Drives
TOSHIBA MK5076GSX
Antivirus
AVG FREE
I've just had a quick play and thing works for me (I'm on win10 though).

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

Thanks very much for the test z3r010. I will try it on 10 also to see.
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
HP Pavilion dv7-6c23cl
OS
Windows 7 Home Premium 64bit
CPU
AMD A8-3520M
Motherboard
Hewlett-Packard 180B (Socket FS1)
Memory
6.00GB DDR3 @ 674MHz (9-9-9-24)
Graphics Card(s)
512MB ATI AMD Radeon HD 6620G
Sound Card
IDT High Definition Audio CODEC
Monitor(s) Displays
Generic PnP Monitor
Screen Resolution
(1600x900@60Hz)
Hard Drives
Samsung 850 EVO 250GB SSD
Mouse
Logitec M525
Internet Speed
30-75Mbps
Antivirus
Avast Free, Unfortunately
Browser
Google Chrome, Firefox, IE
Hi Nasty7,

I have written a batch script that does this . . .

Under the heading Programs And Software - Installed . . ., please run Programs_And_Software_Installed.bat, Option [2] from here => BATCH PROGRAMS [Standalone].

I hope this helps!

I assume this will work under 7 or 10, and yes I have downloaded it, thanks Paul. In fact that post of yours is a treasure of info, thanks!

I guess I need to practice maneuvering in cmd to Programs and Programs(x86) to list the programs, but the batch file will be much quicker.
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
HP Pavilion dv7-6c23cl
OS
Windows 7 Home Premium 64bit
CPU
AMD A8-3520M
Motherboard
Hewlett-Packard 180B (Socket FS1)
Memory
6.00GB DDR3 @ 674MHz (9-9-9-24)
Graphics Card(s)
512MB ATI AMD Radeon HD 6620G
Sound Card
IDT High Definition Audio CODEC
Monitor(s) Displays
Generic PnP Monitor
Screen Resolution
(1600x900@60Hz)
Hard Drives
Samsung 850 EVO 250GB SSD
Mouse
Logitec M525
Internet Speed
30-75Mbps
Antivirus
Avast Free, Unfortunately
Browser
Google Chrome, Firefox, IE
Hi Nasty7,

I assume this will work under 7 or 10, and yes I have downloaded it, thanks Paul. In fact that post of yours is a treasure of info, thanks!
I am glad you found it useful!:thumbsup:
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
Fujitsu LIFEBOOK
OS
Win 7 HP SP1 64-bit Vista HB SP2 32-bit Linux Mint 18.3
CPU
Intel(R) Pentium(R) CPU P6200 @ 2.13GHz
Motherboard
FUJITSU FJNBB06
Memory
4.00 GB
Graphics Card(s)
Intel(R) Graphics Media Accelerator HD
Sound Card
[1] Realtek High Definition Audio [2] Intel(R) Display Audio
Screen Resolution
1366 x 768 x 32 bits (4294967296 colors) @ 59 Hz
Hard Drives
TOSHIBA MK5076GSX
Antivirus
AVG FREE
Back
Top