Um, what?
In your original code, it doesn't matter what $SERVER_PLATFORM is, you always use the same $Registry key, both for $SERVER_PLATFORM eq x86 and for when $SERVER_PLATFORM is ne x85
If the keys are supposed to be different, assign a different key.
What is the problem? Does assigning a different key work, yes or no?
| [reply] |
I need to read key from the following registry path:
'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{B2AE58F9-BF87-4345-9A48-B4C855A484FD}
The problem is that on x64 machine it go to read by default from:
SOFTWARE\Wow6432Node\Microsoft\....
And the key doesn't exist there! it exist under the first path above.
my question - On x64 machine, How can I cause the program to read values from:
SOFTWARE\Microsoft\....
And not from:
SOFTWARE\Wow6432Node\Microsoft\....
If you can write me an example I'll appreciate it.
Thanks.
| [reply] [d/l] [select] |
need to read key from the following registry path:
But you didn't answer my question, does assigning a different key work, yes or no?
Try turning on debugging (as shown in Scanning of 64 Bit registry ) and report error messages
| [reply] |
| [reply] |