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

link|improve this question

78% accept rate
Related to stackoverflow.com/questions/1738985/… – leif81 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 at 9:27
feedback

14 Answers

up vote 4 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.

link|improve this answer
feedback

Refer to:

link|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
4  
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
feedback

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
)
link|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 at 13:16
feedback

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

link|improve this answer
1  
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
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
3  
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
1  
@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
feedback

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;
link|improve this answer
feedback

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!

link|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
feedback

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.

link|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
feedback

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

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

link|improve this answer
feedback

From a batch script: echo %PROCESSOR_ARCHITECTURE%

See http://blogs.msdn.com/b/david.wang/archive/2006/03/26/howto-detect-process-bitness.aspx

link|improve this answer
I like this one... – simgineer Jan 5 at 18:01
feedback

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

link|improve this answer
feedback

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
link|improve this answer
feedback

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
link|improve this answer
5  
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
feedback

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) 
link|improve this answer
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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