syphilis has asked for the wisdom of the Perl Monks concerning the following question:
I don't understand why that script produces one list of keys when I run it using the x86 build, and a different list of keys when I run it using the x64 build. Some keys appear in both lists, other keys in just one list or the other. Why is that ?use warnings; use Win32::TieRegistry; my %Registry; use Win32::TieRegistry ( TiedHash => \%Registry ); print "$_\n" for keys %{$Registry->{LMachine}{SOFTWARE}};
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Win32::TieRegistry surprises
by BrowserUk (Patriarch) on Sep 24, 2010 at 13:06 UTC | |
by syphilis (Archbishop) on Sep 24, 2010 at 22:39 UTC |