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

Believe it or not my installer is so old that it doesn't have an option to detect the 64 bit version of Windows.

Is there a Win DLL call or (even better) an environment variable that would give that info for XP and Vista?

One possible solution

I see that Wikipedia states that the 64 bit version of XP and Vista have a unique Env Variable: * %ProgramW6432%* so I'm guessing that'd be empty on 32 bit windows.

This variable points to Program Files directory, which stores all the installed program of Windows and others. The default on English-language systems is C:\Program Files. In 64-bit editions of Windows (XP, 2003, Vista), there are also %ProgramFiles(x86)% which defaults to C:\Program Files (x86) and %ProgramW6432% which defaults to C:\Program Files. The %ProgramFiles% itself depends on whether the process requesting the environment variable is itself 32-bit or 64-bit (this is caused by Windows-on-Windows 64-bit redirection).

share|improve this question
Related to stackoverflow.com/questions/1738985/… – Leif Gruenwoldt Nov 27 '11 at 16:17
I posted the MSDN / Perl answer here: stackoverflow.com/questions/2030039/… – Mark Lakata Dec 6 '11 at 21:08
Why not use a new installer? o_O – DanRedux Apr 24 '12 at 9:27

16 Answers

up vote 5 down vote accepted

From a batch script: http://support.microsoft.com/kb/556009

The link above also includes instructions for checking this from the Registry:

You can use the following registry location to check if computer is running 32 or 64 bit of Windows Operating System:

HKLM\HARDWARE\DESCRIPTION\System\CentralProcessor\0

You will see the following registry entries in the right pane:

Identifier REG_SZ x86 Family 6 Model 14 Stepping 12 Platform ID REG_DWORD 0x00000020(32)

The above “x86” and “0x00000020(32)” indicate that the Operating System version is 32 bit.

share|improve this answer
5  
I find the referenced KB article somewhat confusing: They look at whether the CPU is 32 or 64 bit, and from that they determine whether you're running 32-bit or 64-bit Windows? I'm pretty sure you can run 32-bit Windows on a 64-bit CPU. Or maybe I'm missing something.. – daniel kullmann Jun 19 '12 at 13:06

Refer to:

share|improve this answer
The second link isn't helpful. The solution it shows only detects whether the program itself was compiled to x64 or not. – Jader Dias Oct 19 '10 at 15:32
7  
Jader: not true. Check again, it's the code for both cases, if you compile for x64 (nothing to solve) and x86 (using IsWow64Process()). – Miro Kropacek Oct 26 '10 at 9:46

To check for 64bit version of Windows in a command box I use the following template:

test.bat:

@echo off
if defined ProgramFiles(x86) (
@echo yes
@echo Some 64-bit work
) else (
@echo no
@echo Some 32-bit work
)

The "ProgramFiles(x86)" is an environment variable automatically defined by cmd.exe (both 32-bit and 64-bit versions) on Windows 64-bit machines only.

share|improve this answer
I like it ... simple, and it gets the job done. – Ken Mar 9 '11 at 17:34
Are those Environment Variables you're testing there? And by the answer "yes, no", are you answering the question : "Is this the 64 bit version of Windows"? – Clay Nichols Apr 25 '12 at 13:16
I've just checked on both 32 and 64 bit Windows 7 systems, and it works as advertised. Nice. – Kuba Ober Mar 18 at 18:53

This has been answered pretty well already, but since the question and current answers helped me come up with my own solution, I'll post it here in the hope that someone else will save some time.

Delphi 7 code to check whether your 32 bit program is running on a 64 bit operating system:

function Is64BitOS: Boolean;
type
  TIsWow64Process = function(Handle:THandle; var IsWow64 : BOOL) : BOOL; stdcall;
var
  hKernel32 : Integer;
  IsWow64Process : TIsWow64Process;
  IsWow64 : BOOL;
begin
  // we can check if the operating system is 64-bit by checking whether
  // we are running under Wow64 (we are 32-bit code). We must check if this
  // function is implemented before we call it, because some older versions
  // of kernel32.dll (eg. Windows 2000) don't know about it.
  // see http://msdn.microsoft.com/en-us/library/ms684139%28VS.85%29.aspx
  Result := False;
  hKernel32 := LoadLibrary('kernel32.dll');
  if (hKernel32 = 0) then RaiseLastOSError;
  @IsWow64Process := GetProcAddress(hkernel32, 'IsWow64Process');
  if Assigned(IsWow64Process) then begin
    IsWow64 := False;
    if (IsWow64Process(GetCurrentProcess, IsWow64)) then begin
      Result := IsWow64;
    end
    else RaiseLastOSError;
  end;
  FreeLibrary(hKernel32);
end;
share|improve this answer

I tested the solution I suggested in my question:

Tested for Windows Environment Variable: ProgramW6432

If it's non empty then it's 64 bit Windows.W

share|improve this answer
2  
The environment variable you listed in your question was ProgramW6432. Here, you list PROCESSOR_ARCHITEW6432. Which one did you use? – Andrew Mar 17 '09 at 20:43
1  
Thanks Andrew. I found out about this mistake the hard way: when I had someone test it ;-). Should have been: ProgramW6432 .Fixing it now. – Clay Nichols Mar 18 '09 at 13:24
4  
I don't have either of these environment variables (ProgramW6432 PROCESSOR_ARCHITEW6432), on my Vista 64. I do have PROCESSOR_ARCHITECTURE, which is set to x86 or AMD64 – Mike Aug 28 '09 at 18:54
Thanks Mike! Now, if I can just figure out if Processor_Architecture is always present on Win 64. – Clay Nichols Aug 29 '09 at 3:20
2  
@Mike, @total, @Clay: I do have ProgramW6432, PROCESSOR_ARCHITEW6432 and CommonProgramW6432 on my 64-bit Vista Enterprise SP2, but only in 32-bit command prompt. Whether or not these variables are defined seems to depend on the bitness of the calling process, not the OS bitness. – Helen Jun 1 '11 at 6:29
show 1 more comment

If you can make API calls, try using GetProcAddress / GetModuleHandle to check for the existence of IsWow64Process which is only present in Windows OS that have 64-bit versions.

You could also try the ProgramFiles(x86) environment variable used in Vista/2008 for backwards compatibility, but I'm not 100% sure about XP-64 or 2003-64.

Good luck!

share|improve this answer
PG(x86) is in at least XP-64 and since XP-64 is more related to 2003-64 than, say, XP original I'd bet it's in 2003-64 too. – Esko Mar 2 '09 at 6:22
1  
According to the MSDN article for IsWow64Process, "Note that this technique is not a reliable way to detect whether the operating system is a 64-bit version of Windows because the Kernel32.dll in current versions of 32-bit Windows also contains this function." – Nathan Moinvaziri Aug 13 '12 at 18:46
Checking the existence of IsWow64Process is not reliable. Just failed on Windows Xp 32 bit. IsWow64Process is present – Jako Apr 16 at 10:37

From a batch script:

IF PROCESSOR_ARCHITECTURE == x86 AND
   PROCESSOR_ARCHITEW6432 NOT DEFINED THEN
   // OS is 32bit
ELSE
   // OS is 64bit
END IF

Using windows api:

if (GetSystemWow64Directory(Directory, MaxDirectory) > 0) 
   // OS is 64bit
else
   // OS is 32bit

Sources:

  1. http://blogs.msdn.com/b/david.wang/archive/2006/03/26/howto-detect-process-bitness.aspx
  2. http://msdn.microsoft.com/en-us/library/windows/desktop/ms724405(v=vs.85).aspx
share|improve this answer
I like this one... – simgineer Jan 5 '12 at 18:01

I used this within a login script to detect 64 bit Windows

if "%ProgramW6432%" == "%ProgramFiles%" goto is64flag

share|improve this answer

I don't know what language you're using, but .Net has the environment variable: PROCESSOR_ARCHITEW6432 if the OS is 64-bit.

If all you want to know is whether your application is running 32-bit or 64-bit, you can check IntPtr.Size. It will be 4 if running in 32-bit mode and 8 if running in 64-bit mode.

share|improve this answer
This option only works in .net. I need an option that'll work with my installer. – Clay Nichols Mar 17 '09 at 19:04
If you force the project to 32-bit (e.g. Project->Propterties and change platform target to x86), the IntPtr.Size value will be 4. – Jader Dias Oct 19 '10 at 15:36
@Jader: Right you are. I didn't realize how ambiguous my answer was before, but it was obvious as soon as you pointed it out. I've edited my answer for clarity. – Andrew Oct 22 '10 at 2:54

For a VBScript / WMI one-liner that retrieves the actuals bits number (32 or 64) of the OS or the Hardware, take a look at http://csi-windows.com/toolkit/csi-getosbits

share|improve this answer

I don't know on which windows version it exists, but on vista higher it runs:

Function Is64Bit As Boolean
Dim x64 As Boolean = System.Environment.Is64BitOperatingSystem
If x64 Then
   Return true
Else
   Return false
End If
End Function
share|improve this answer

In C#:

public bool Is64bit() {
    return Marshal.SizeOf(typeof(IntPtr)) == 8;
}

In VB.Net:

Public Sub Is64bit() As Boolean
    Is64bit = Marshal.SizeOf(GetType(IntPtr)) = 8
End Sub
share|improve this answer
6  
That detects if the application is a 64-bit app. If you force it to 32-bit (e.g. Project->Propterties and change platform target to x86), the return value will be 4. – Raymond Martineau Mar 2 '09 at 5:30
This is a good, simple detection within a .Net application. – Christopher_G_Lewis Mar 19 '09 at 17:28

I tested the following batch file on Windows 7 x64/x86 and windows XP x86 and its fine, But i havent tried XP x64 yet but probably it will work:

If Defined ProgramW6432 (Do x64 stuff or end if you are aiming for x86) else (Do x86 stuff or end if you are aiming for x64) 
share|improve this answer

I know this is ancient but, here's what I use to detect Win764

On Error Resume Next

Set objWSHShell = CreateObject("WScript.Shell")

strWinVer = objWSHShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\BuildLabEx")

If len(strWinVer) > 0 Then
    arrWinVer = Split(strWinVer,".")
    strWinVer = arrWinVer(2)
End If

Select Case strWinVer
Case "x86fre"
strWinVer = "Win7"
Case "amd64fre"
    strWinVer = "Win7 64-bit"
Case Else
    objWSHShell.Popup("OS Not Recognized")
    WScript.Quit
End Select
share|improve this answer

I want to add what I use in shell scripts (but can easily be used in any language) here. The reason is, that some of the solutions here don't work an WoW64, some use things not really meant for that (checking if there is a *(x86) folder) or don't work in cmd scripts. I feel, this is the "proper" way to do it, and should be safe even in future versions of Windows.

 @echo off
 if /i %processor_architecture%==AMD64 GOTO AMD64
 if /i %PROCESSOR_ARCHITEW6432%==AMD64 GOTO AMD64
    rem only defined in WoW64 processes
 if /i %processor_architecture%==x86 GOTO x86
 GOTO ERR
 :AMD64
    rem do amd64 stuff
 GOTO EXEC
 :x86
    rem do x86 stuff
 GOTO EXEC
 :EXEC
    rem do arch independent stuff
 GOTO END
 :ERR
    rem I feel there should always be a proper error-path!
    @echo Unsupported architecture!
    pause
 :END
share|improve this answer
Josef, have you tested this on a 32 bit and 64 bit machine? – Clay Nichols Jul 10 '12 at 14:00
My use for this is to have my installer behave differently so I'd need a return value. So I'd call this script and then have it return a value (1 or 0, etc.). – Clay Nichols Jul 10 '12 at 14:02

Check the Registry for the existence of HKLM\SOFTWARE\Wow6432Node - If it's there, the system is 64-bit - 32-bit, otherwise.

share|improve this answer

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.