Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get a list of installed programs
Message
 
To
21/11/2007 18:39:18
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Windows
Category:
Computing in general
Miscellaneous
Thread ID:
01270611
Message ID:
01270641
Views:
20
Hi Jay,

>Is there a way to do this? I'm about to wipe a hard drive after backing it up, but would like to have an easy reference of installed apps.

HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products

contains all installed products. The application name is in "ProductName" in each of the GUID sub keys. If you want to do it in a batch file:

FOR /F %%i IN ('reg query HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products') DO @reg query %%i /v ProductName|FINDSTR "ProductName"
--
Christof
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform