I have an app which reads from the registry to look for some registry keys written by a 32-bit app. When run on 64bit windows, the registry entries are under Wow6432Node. How do I determine if the user is running 64-bit windows.
Thanks
Dan
I have an app which reads from the registry to look for some registry keys written by a 32-bit app. When run on 64bit windows, the registry entries are under Wow6432Node. How do I determine if the user is running 64-bit windows.
Thanks
Dan
Determining 64-bit OS
Ori'
Though couldn't you install the 32-bit OS on any of those
Dan
amendez
I'm not really sure, but I guess you could check to see if the 32-bit Program Files folder exists (c:\Program Files (x86)).
Probably not the simplest way, but the only way I can think of without messing around on 64bit Vista for a while :)
Andy
WII
You can do an IsWow64Process api call to see.
hrubesh
I think the valid values are "AMD64", "x64" and "IA64" (obviously not relevant to Vista)
dstock