Click here to Skip to main content
15,894,740 members
Articles / Programming Languages / C#

32-Bit or 64-bit OS ??

Rate me:
Please Sign up or sign in to vote.
4.98/5 (27 votes)
13 Oct 2010CPOL 32.9K   7  
In .NET 4.0, you can also use the new System.Environment.Is64BitOperatingSystem and System.Environment.Is64BitProcess

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
21 Sep 2010GPUToaster™ 4 alternatives  
A simple way to detect bitness of an OS Programatically. (C# and C++ examples given)
Please Sign up or sign in to vote.
19 Sep 2010Aescleal
In C++ you can use the size of a pointer to work out what sort of process you're running in:bool is_64_bit(){ return sizeof(void *) == 8;}This has got the advantage of being portable and you don't have to call any OS functions.You can do something similar in C - just return...
Please Sign up or sign in to vote.
20 Sep 2010a_pess
To check 64Bit Operating system in VB.NET,Public Shared Function is64BitOPeratinSystem() As Boolean Return (Marshal.SizeOf(IntPtr.Zero) = 8)End Function
Please Sign up or sign in to vote.
5 Aug 2011The_Mega_ZZTer
Version check is wrong. It happens to work correctly only because no minor versions of Windows 5 were released after 5.1 (AFAIK... are Windows Server 2003 and Embedded XP and Media Center XP still 5.1?). A theoretical version 5.2 would fail the check. I submit the following...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) remes GmbH
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions