RE: get a list of installed programs and path to exe.

2004-12-09 Thread mailware
hi all. here is a start. I want to get values for programs installed. eg. "DisplayName","DisplayVersion" etc. thanks in advance for any help. -Jeremy A. - #!perl use Win32::TieRegistry( Delimiter=>"#", ArrayValues=>0 ); $pound= $Registry->Delimiter("/"); $appKey= $Registry->{

RE: get a list of installed programs and path to exe.

2004-12-09 Thread kbaumgartner
ehalf Of $Bill Luebkert Sent: Thursday, December 09, 2004 5:52 PM To: [EMAIL PROTECTED] Cc: Perl-Win32 Subject: Re: get a list of installed programs and path to exe. [EMAIL PROTECTED] wrote: > Hi there, > > in windows xp/2000 how do i get a list of all installed programs and paths to

Re: get a list of installed programs and path to exe.

2004-12-09 Thread $Bill Luebkert
[EMAIL PROTECTED] wrote: > Hi there, > > in windows xp/2000 how do i get a list of all installed programs and paths to > exe? This may help - you can choose registry or WMI : #!perl -w -- use warnings; use strict; use WIn32::OLE qw(in); use Data::Dumper; $Data::Dumper::Indent=1; our %A;

RE: get a list of installed programs and path to exe.

2004-12-09 Thread John Serink
Go to the registry and peel it out of there. Win32::TieRegistry is what you're after. Have fun, John > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Friday, December 10, 2004 9:32 AM > To: Perl-Win32 > Cc: [EMAIL PROTEC