web-dev-qa-db-ja.com

特定のプロセスが32ビットか64ビットかをプログラムで判断する方法

C#アプリケーションは、特定のアプリケーション/プロセス(注:現在のプロセスではない)が32ビットモードまたは64ビットモードで実行されているかどうかをどのように確認できますか?

たとえば、特定のプロセスを名前、つまり「abc.exe」で、またはプロセスID番号に基づいて照会したい場合があります。

93
satya

私が見たもっと面白い方法の一つはこれです:

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

他のプロセスが64ビットエミュレーター(WOW64)で実行されているかどうかを確認するには、次のコードを使用します。

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

    internal static class Program
    {
        private static void Main()
        {
            foreach (var p in Process.GetProcesses())
            {
                try
                {
                    Console.WriteLine(p.ProcessName + " is " + (p.IsWin64Emulator() ? string.Empty : "not ") + "32-bit");
                }
                catch (Win32Exception ex)
                {
                    if (ex.NativeErrorCode != 0x00000005)
                    {
                        throw;
                    }
                }
            }

            Console.ReadLine();
        }

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

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

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

    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);
    }
}
169
Jesse C. Slicer

.Net 4.0を使用している場合、現在のプロセスのワンライナーです。

Environment.Is64BitProcess

Environment.Is64BitProcessProperty(MSDN)を参照してください。

137
Sam

選択された答えは、尋ねられたことを実行しないため、正しくありません。代わりに、プロセスがx64 OS上で実行されているx86プロセスであるかどうかを確認します。そのため、x64 OS上のx64プロセスまたはx86 OSで実行されているx86プロセスに対して「false」を返します。
また、エラーを正しく処理しません。

より正しい方法は次のとおりです。

internal static class NativeMethods
{
    // see https://msdn.Microsoft.com/en-us/library/windows/desktop/ms684139%28v=vs.85%29.aspx
    public static bool Is64Bit(Process process)
    {
        if (!Environment.Is64BitOperatingSystem)
            return false;
        // if this method is not available in your version of .NET, use GetNativeSystemInfo via P/Invoke instead

        bool isWow64;
        if (!IsWow64Process(process.Handle, out isWow64))
            throw new Win32Exception();
        return !isWow64;
    }

    [DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool IsWow64Process([In] IntPtr process, [Out] out bool wow64Process);
}
17
user626528

ポインターのサイズを確認して、32ビットか64ビットかを判断できます。

int bits = IntPtr.Size * 8;
Console.WriteLine( "{0}-bit", bits );
Console.ReadLine();
10
Darwyn
[DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool IsWow64Process([In] IntPtr hProcess, [Out] out bool lpSystemInfo);

public static bool Is64Bit()
{
    bool retVal;

    IsWow64Process(Process.GetCurrentProcess().Handle, out retVal);

    return retVal;
}
4
Praveen M B

これが1行のチェックです。

bool is64Bit = IntPtr.Size == 8;
1
Vikram Bose

私はこれを使用したい:

string e = Environment.Is64BitOperatingSystem

この方法で、ファイルを見つけたり検証したりする必要がある場合、簡単に書くことができます:

string e = Environment.Is64BitOperatingSystem

       // If 64 bit locate the 32 bit folder
       ? @"C:\Program Files (x86)\"

       // Else 32 bit
       : @"C:\Program Files\";
0
user1351333