According to the latest silverlight deployment guide, I can determine what version of silverlight is installed by
-Querying the: “HKLM\Software\Microsoft\Silverlight\Version” registry key
This works great on my 32 bit dev machine. But on a couple of 64 bit machines, HKLM\Software\Microsoft\Silverlight doesn't exist.
Where is it on x64 machines?
I know this has been answered but you can use 'RegistryKey' with .Net 4. This allow's your 32 bit program to access the 64 bit registry as it would be normally viewed on your 64 bit machine. The code:
Hope this is useful. I use this as sometimes you cannot view all keys required in 'Wow6432Node'.
Look in HKLM\Software\Wow6432Node, the home for registry keys that 32-bit programs can see.
Searching through my registry, I found this:
Can anyone confirm that this is a safe place to look?