02-08-2008 10:50 AM
02-10-2008 11:47 AM
Hi ST1
a think what you want is available under this registry key: "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall"
Here is a script for a batch file which list all entries from this registry key. i found it on this web page:
http://forum.fachinformatiker.de/windows-betriebssysteme/61021-installierte-software-auflisten.html.
Script:
"@Echo Off
Start /Wait Regedit /E %TEMP%.\Tmp HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall
Find "DisplayName" < %TEMP%.\Tmp | Find /V "QuietDisplayName"
Del %TEMP%.\Tmp
pause"
I hope this helps you.
Mike
02-11-2008 10:49 AM
Mike,
Thanks. That looks like what I need.