Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
ok gepebril69 I have not a solution as your code produces useful results for me and for others too(more about it below). But I have some suggestions.

Preamble: you said special access flags to make it happen on 64bit platforms and this ringed a bell in my mind: is this monk another victim of the evil microsoft redirection? you should already know, as you are using special access flags, but to fully understand read this post from me.

Filesystem redirection has two, equally evil, brothers: Registry redirection and COM object model. See what they say about Registry redirection.

Now that you know you are walking on mobile sands quicksand i can suggest to start with a little clean new code, instead of the code presented by you (even if it runs). In fact you are querying for unistallable programs and you know that your OS segregate 32bit from 64bit ones (with the funny WoW64 name..).

So i spoiled your code from unusefull things (delimiters, arrayvalues, the call of Dumper.. but also the dump af all keys) and i add just a little code to show if the Perl version is 64bit. Most important i removed your Access special keys (more on that below) part {Access=> 0x20019|0x0100} and used the standard flag imported from Win32API::Registry ie use Win32API::Registry qw(KEY_READ); .. Access=>KEY_READ()

So the code became:
use strict; use warnings; use Win32API::Registry qw(KEY_READ); use Config; print "\n\nPerl $Config{archname}\n"; use Win32::TieRegistry(Delimiter=>"/"); my $uninstall=$Registry->Open( "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Unin +stall", { Access=>KEY_READ() #Access=> 0x20019|0x0100 } ); print "Number of subkeys found: ".scalar(keys %$uninstall)."\n";
With my little Perl version test program i got theese results:
| | | Perl MSWin32-x86-multi-thread | Number of subkeys found: 353 [OK] C:\ulisse\strawberry\perl\bin\perl.exe | | | Perl MSWin32-x86-multi-thread-64int | Number of subkeys found: 353 [OK] C:\ulisse\straw5.20-32b\perl\bin\perl.exe | | | Perl MSWin32-x64-multi-thread | Number of subkeys found: 77 <---- + look here [OK] C:\ulisse\straw64\perl\bin\perl.exe | | | Perl MSWin32-x86-multi-thread-64int | Number of subkeys found: 353 [OK] C:\ulisse\strP5.22-32\perl\bin\perl.exe
As the perl is 64bit the keys found are 77 on my workstation. 353 otherwise.

Now i understood why you used thees special keys (described here) because KEY_WOW64_64KEY (0x0100) is not exported by Win32API::Registry. and you used it diractly in junction with KEY_READ (0x20019).

using {Access=> 0x20019|0x0100} access (uncomment it in the above example and comment the Access=>KEY_READ()) give theese results:
| | | Perl MSWin32-x86-multi-thread | Number of subkeys found: 77 [OK] C:\ulisse\strawberry\perl\bin\perl.exe | | | Perl MSWin32-x86-multi-thread-64int | Number of subkeys found: 77 [OK] C:\ulisse\straw5.20-32b\perl\bin\perl.exe | | | Perl MSWin32-x64-multi-thread | Number of subkeys found: 77 [OK] C:\ulisse\straw64\perl\bin\perl.exe | | | Perl MSWin32-x86-multi-thread-64int | Number of subkeys found: 77 [OK] C:\ulisse\strP5.22-32\perl\bin\perl.exe
As you can see all Perls see only 77 unistallable programs. The description of the access mask tell us:KEY_WOW64_32KEY (0x0200) Indicates that an application on 64-bit Windows should operate on the 32-bit registry view... But is not true! is the opposite! UPDATE last senteces is wrong: see my last reply.

If you see zero key returned on your machine, with your original code, it means to me that you have no 64bit applications uninstallable on your system (the opposite of what i read from ms docs!! in fact in the 77 subkey i find programs that resides in the 64bit program folder "C:\Program Files").Or using other words: if you use your special access flag you are probably looking for the wrong thing. try just reading them and be aware of the possible redirection occuring when you play the three card game with that OS.

HtH and let us know
L*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.

In reply to Re: Reading subkeys from registry -- evil registry redirection? by Discipulus
in thread Reading subkeys from registry by gepebril69

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-23 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found