I want to detect whether the current Windows OS is 32-bit or 64-bit. How to achieve it using C++? I don't want processor type I want OS's bit type. This is because you can install 32-bit OS on 64-bit processor.
|
|
The function to call is http://msdn.microsoft.com/en-us/library/ms684139(v=vs.85).aspx If the program is compiled for 64 bits, it will already know. |
|||
|
If your code is 64-bit and running, then Windows is 64-bit - nothing to check. If your process is 32-bit call |
|||
|
|
|
you can use IsWOW64Process if your app is a 32 bit app, if its true you are running on an x64 OS, else its 32bit |
|||
|
|
|
You need to use GetNativeSystemInfo(). Given that you expect this to work on a 32-bit operating system, you need to use LoadLibrary + GetProcAddress so that you can deal with this function not being available. So if that fails, you know it is a 32-bit operating system. If not, SYSTEM_INFO.wProcessorArchitecture gives you the real processor type instead of the emulated one. |
|||
|
|
|
you can run run the windows command
One of the returning categories is System Type. Its output reads: This may be a more complicated solution that some of the others provided but thought I would add it as a possibility. (Maybe you are after additonal info as well). |
|||||
|
|
A simple check is if the EXE does not run, then it is a 64-bit executable running on a 32-bit machine. A 64-bit machine will always run a 32-bit executable. From Microsoft,
In Windows, however, you can also check for the existence of the Program Files (x86) folder as another simple check. No need to get fancy. |
|||||||||
|
|
Use
http://msdn.microsoft.com/en-us/library/ms724958(v=vs.85).aspx
|
|||||||
|