How do I check whether an application/process is running in 32-bit or 64-bit mode? for eg. i will start a process abc.exe. In c# how can we know whether a 32-bit abc.exe is running or a 64-bit one? please help..

It is not the current process.. I am querying for some process 'abc.exe'

link|improve this question

76% accept rate
Please always put the language in as a tag; I'll change that now on this post. :-) – Dean J Dec 23 '09 at 15:21
3  
Please clarify whether you want to know the current process is 64 bit or you are querying another process? – Mehrdad Afshari Dec 23 '09 at 15:25
Dupelicate: stackoverflow.com/questions/266082/… – Lawrence Johnston Dec 23 '09 at 17:02
feedback

4 Answers

up vote 27 down vote accepted

One of the more interesting ways I've seen is this:

if (IntPtr.Size == 4)
{
    // 32-bit
}
else if (IntPtr.Size == 8)
{
    // 64-bit
}
else
{
    // The future is now!
}

To find out if OTHER processes are running in the 64-bit emulator (WOW64), use this code:

namespace Is64Bit
{
    using System;
    using System.Diagnostics;
    using System.Runtime.InteropServices;

    internal static class Program
    {
        private static void Main()
        {
            foreach (var p in Process.GetProcesses())
            {
                Console.WriteLine(p.ProcessName + " is " + (IsWin64(p) ? string.Empty : "not ") + "32-bit");
            }

            Console.ReadLine();
        }

        private static bool IsWin64(Process process)
        {
            if ((Environment.OSVersion.Version.Major > 5)
                || ((Environment.OSVersion.Version.Major == 5) && (Environment.OSVersion.Version.Minor >= 1)))
            {
                IntPtr processHandle;
                bool retVal;

                try
                {
                    processHandle = Process.GetProcessById(process.Id).Handle;
                }
                catch
                {
                    return false; // access is denied to the process
                }

                return NativeMethods.IsWow64Process(processHandle, out retVal) && retVal;
            }

            return false; // not on 64-bit Windows
        }
    }

    internal static class NativeMethods
    {
        [DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)]
        [return: MarshalAs(UnmanagedType.Bool)]
        internal static extern bool IsWow64Process([In] IntPtr process, [Out] out bool wow64Process);
    }
}
link|improve this answer
13  
+1 for "The future is now!" – Dykam Dec 24 '09 at 8:40
Hi, this will work for the current instance. but I want to know for some other process which is already running. Pls help – satya Jan 4 '10 at 8:01
I'm amending this answer now. – Jesse C. Slicer Jan 4 '10 at 13:53
Thanks Jesse Slicer – satya Jan 24 '10 at 7:21
3  
(Environment.OSVersion.Version.Major >= 5 && Environment.OSVersion.Version.Minor >= 1) And that is why Microsoft has to create version lie compatibility shims - to work around bugs in code like that. What happens when Windows Vista (6.0) comes out? And people then bad-mouth Microsoft for making Windows 7 version 6.1 rather than 7.0, it fixes so many app-compat bugs. – Ian Boyd Sep 9 '10 at 14:53
show 2 more comments
feedback

If you're using .Net 4.0, it's a one-liner for the current process:

Environment.Is64BitProcess

http://msdn.microsoft.com/en-us/library/system.environment.is64bitprocess.aspx

link|improve this answer
1  
Could you post the code of Is64BitProcess? Perhaps i can use what it does to figure out if i'm running in as a 64-bit process. – Ian Boyd Sep 9 '10 at 14:48
@Ian, I doubt Sam would be legally permitted to post MS code on this forum. I'm not sure of the exact content of their reference licence, but I am pretty sure it proscribes reproduction of the code anywhere. – ProfK Mar 28 '11 at 6:43
1  
@Ian someone has done that work for you: stackoverflow.com/questions/336633/… – Robert MacLean Sep 5 '11 at 14:01
feedback

You can check the size of a pointer to determine if it's 32bits or 64bits.

int bits = IntPtr.Size * 8;
Console.WriteLine( "{0}-bit", bits );
Console.ReadLine();
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.