Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
probably duplicate of : stackoverflow.com/questions/1505582/… – user72424 Aug 10 '11 at 12:59
he is not asking whether code is compiled in 32 or 64 bit but trying to find installed os version – Ali Veli Aug 10 '11 at 13:02
Duplicate of stackoverflow.com/questions/2140619/… (which has a more complete answer). – Fabio Zadrozny Jan 10 '12 at 17:04

7 Answers

up vote 18 down vote accepted

The function to call is IsWow64Process that tells your 32-bit app if it runs on a 64 bit Windows.

http://msdn.microsoft.com/en-us/library/ms684139(v=vs.85).aspx

If the program is compiled for 64 bits, it will already know.

share|improve this answer
+1: damn ninjas :P – Necrolis Aug 10 '11 at 13:01
+1 It worked well – Rahul Aug 10 '11 at 13:20

If your code is 64-bit and running, then Windows is 64-bit - nothing to check. If your process is 32-bit call IsWow64Process() - 32-bit processes run in WOW64 on 64-bit Windows and without WOW64 otherwise.

share|improve this answer
+1: right on target – Rahul Aug 11 '11 at 3:44

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

share|improve this answer
+1: right on target – Rahul Aug 11 '11 at 3:44

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.

share|improve this answer

you can run run the windows command systeminfo as a process in your program.

#include <stdlib.h>

system("systeminfo");

One of the returning categories is System Type.

Its output reads: System Type: x86-based PC, or System Type: x64-based PC

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).

share|improve this answer
1  
does what he asked. – harper89 Aug 11 '11 at 15:15

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,

Most programs designed for the 32-bit version of Windows will work on the 64-bit version of Windows. Notable exceptions are many antivirus programs.

Device drivers designed for the 32-bit version of Windows don't work on computers running a 64-bit version of Windows. If you're trying to install a printer or other device that only has 32-bit drivers available, it won't work correctly on a 64-bit version of Windows.

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.

share|improve this answer
1  
Err, how does a program conclude anything when it cannot run? – Hans Passant Aug 10 '11 at 13:02
1  
@Hans: Exactly. – 0A0D Aug 10 '11 at 13:03

Use GetNativeSystemInfo (http://msdn.microsoft.com/en-us/library/ms724958(v=vs.85).aspx) api. it gets a LPSYSTEM_INFO parameter to get what you want.

SYSTEM_INFO structure:

http://msdn.microsoft.com/en-us/library/ms724958(v=vs.85).aspx

wProcessorArchitecture

The processor architecture of the installed operating system.
share|improve this answer
1  
Microsoft's documentation is wrong, and in fact wProcessorArchitecture doesn't return the installed OS processor architecture, but rather returns the architecture the app was built for. – ThreeBit Jul 20 '12 at 1:54
ok i didn't know that, didn't try yet to verify though – Ali Veli Jul 21 '12 at 17:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.