List of Installed Software

Posted: 11-27-2003, 04:44 PM
Hello,

I would like to generate a list of all software installed on my computer,
and then print that list. Is there an easy way to do that?

Best Regards,
Talal Itani


Reply With Quote

Responses to "List of Installed Software"

rifleman
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 05:04 PM
"Talal Itani" <titani@airmail.net> wrote in message
news:bq59ju$2th@library1.airnews.net...
> Hello,
>
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
>
> Best Regards,
> Talal Itani
>
>
You need Aida32. Download and install the personal edition. It's free.

http://www.aida32.hu/aida-download.php?bit=32


Reply With Quote
Rick \Nutcase\ Rogers
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 05:06 PM
Hi,

Belarc Advisor, www.belarc.com, it's free.

--
Best of Luck,

Rick Rogers aka "Nutcase" MS-MVP - Win9x
Windows isn't rocket science! That's my other hobby!
http://mvp.support.microsoft.com/
Associate Expert - WinXP - Expert Zone
www.microsoft.com/windowsxp/expertzone
Win98 Help - www.rickrogers.org

"Talal Itani" <titani@airmail.net> wrote in message
news:bq59ju$2th@library1.airnews.net...
> Hello,
>
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
>
> Best Regards,
> Talal Itani
>
>

Reply With Quote
Colin Wilson
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 05:08 PM
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
This might do the job...

http://www.belarc.com/free_download.html

--
Please add "[newsgroup]" in the subject of any personal replies via email
* old email address "btiruseless" abandoned due to worm-generated spam *
--- My new email address has "ngspamtrap" & @btinternet.com in it ;-) ---
Reply With Quote
rifleman
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 05:11 PM
"Rick "Nutcase" Rogers" <rick@mvps.org> wrote in message
news:e3$i%23iQtDHA.3436@tk2msftngp13.phx.gbl...
> Hi,
>
> Belarc Advisor, www.belarc.com, it's free.
>
respectfully, Aida32 is much better.


Reply With Quote
Dr. Bill
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 06:26 PM
Talal Itani wrote:
> Hello,
>
> I would like to generate a list of all software installed on my
> computer, and then print that list. Is there an easy way to do that?
>
> Best Regards,
> Talal Itani
Ignore Dumbo Klaat.
Regcleaner free download from:
http://www.pcmedixwebs.com/download/RegCleaner.exe
uninstall menu, file, save list as text


Reply With Quote
Torgeir Bakken (MVP)
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 08:13 PM
Talal Itani wrote:
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
Hi

Here is a VBScript that enumerates the keys under the Uninstall key in registry
and shows the result in notepad:


Const OpenAsASCII = 0 ' Opens the file as ASCII (TristateFalse)
Const OpenAsUnicode = -1 ' Opens the file as Unicode (TristateTrue)
Const OpenAsDefault = -2 ' Opens the file using the system default

Const OverwriteIfExist = -1
Const FailIfNotExist = 0
Const ForReading = 1

sComputer = "." ' use . for local computer

Set oShell = CreateObject("WScript.Shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
sTmpFile = oShell.ExpandEnvironmentStrings("%TEMP%") & "\" & oFSO.GetTempName

Set fTmpFile = oFSO.CreateTextFile(sTmpFile, _
OverwriteIfExist, OpenAsASCII)

fTmpFile.Write InstalledApplications(sComputer)
fTmpFile.Close
oShell.Run "notepad.exe " & sTmpFile, 1, True
oFSO.DeleteFile sTmpFile


Function InstalledApplications(node)
Const HKLM = &H80000002 'HKEY_LOCAL_MACHINE
Set oRegistry = _
GetObject("winmgmts:{impersonationLevel=impersonat e}!\\" _
& node & "/root/default:StdRegProv")
sBaseKey = _
"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninsta ll\"
iRC = oRegistry.EnumKey(HKLM, sBaseKey, arSubKeys)
For Each sKey In arSubKeys
iRC = oRegistry.GetStringValue( _
HKLM, sBaseKey & sKey, "DisplayName", sValue)
If iRC <> 0 Then
oRegistry.GetStringValue _
HKLM, sBaseKey & sKey, "QuietDisplayName", sValue
End If
If sValue <> "" Then
InstalledApplications = _
InstalledApplications & sValue & vbCrLf
End If
Next
End Function



--
torgeir
Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of the 1328 page
Scripting Guide: http://www.microsoft.com/technet/scriptcenter


Reply With Quote
Rick \Nutcase\ Rogers
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-27-2003, 11:48 PM
Well, we're all entitled to our opinions. I like Belarc for this sort of
thing, as the information the user wants will be right there on the list the
program generates. With Aida32, the user has to locate it in the multitude
of system information the program provides.

--
Best of Luck,

Rick Rogers aka "Nutcase" MS-MVP - Win9x
Windows isn't rocket science! That's my other hobby!
http://mvp.support.microsoft.com/
Associate Expert - WinXP - Expert Zone
www.microsoft.com/windowsxp/expertzone
Win98 Help - www.rickrogers.org

"rifleman" <me9@privacy.net> wrote in message
news:bq5b80$1uq9a1$1@ID-108938.news.uni-berlin.de...
> "Rick "Nutcase" Rogers" <rick@mvps.org> wrote in message
> news:e3$i%23iQtDHA.3436@tk2msftngp13.phx.gbl...
> > Hi,
> >
> > Belarc Advisor, www.belarc.com, it's free.
> >
>
> respectfully, Aida32 is much better.
>
>

Reply With Quote
d2003xx
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-29-2003, 02:36 AM
"Talal Itani" <titani@airmail.net> wrote in message news:<bq59ju$2th@library1.airnews.net>...
> Hello,
>
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
run appwiz.cpl and take a screenshot.
Reply With Quote
Mattias Honrendgard
Guest
Posts: n/a
 
Re: List of Installed Software
Posted: 11-29-2003, 03:21 PM
"Talal Itani" <titani@airmail.net> wrote in message news:<bq59ju$2th@library1.airnews.net>...
> Hello,
>
> I would like to generate a list of all software installed on my computer,
> and then print that list. Is there an easy way to do that?
>
> Best Regards,
> Talal Itani
Basically, you can't get a 100% list. Depends what you mean by
installed - take the Mozilla Firebird install as an example - a simple
"unzip" and its installed. The best way is to be strict with your
programs and store everything in a single directory structure, but
even then a lot of "installers" will insist on throwing dll's and the
like all over your system / not let you change install location / etc,
etc...
Reply With Quote
 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
What's list of favorite software/s that you've installed on your ... Guest Windows NT/2000/XP 0 07-15-2008 11:20 PM
What's list of favorite software that you've installed on your windows ... Guest Windows NT/2000/XP 0 07-15-2008 09:11 PM
List of Installed Software Pat Garard Windows XP Configuration & Management 3 01-16-2006 03:10 AM
Sample ASP page to list installed software Anthony Lizza Windows XP WMI 1 08-05-2004 08:13 AM
XP Software Compatibility List BC Windows XP Setup 1 09-09-2003 08:37 PM


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90