in reply to Re: How to obtain a list of software applications installed on a Win based PC?
in thread How to obtain a list of software applications installed on a Win based PC?
Thanks for the help indeed.use strict; use Win32::Registry; my $Key; if ($HKEY_LOCAL_MACHINE->Open("Software\\Microsoft\\Windows\\CurrentVe +rsion\\Uninstall", $Key)) { print "\nDone1\n"; my %ValueList; $Key->GetValues(\ %ValueList); # nothing happens here! for my $item (keys(%ValueList)) # nor here { print "\nDone2 $item\n"; print "$item : $ValueList{$item}[2]\n"; } print $Key->{DisplayName}."\n"; $Key->Close(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: How to obtain a list of software applications installed on a Win based PC?
by BrowserUk (Patriarch) on Jun 01, 2004 at 15:49 UTC |