I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit.
But on 64 bit server the environment variable %processor_architecture% is returning x86 instead of AMD64.
Does anyone has any clue about this?
|
I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit.
But on 64 bit server the environment variable Does anyone has any clue about this? |
|||||||
|
|
You may be getting the wrong environment variable. If your application is a 32-bit application running on a 64-bit OS the process version of this environment variable will return x86. If you want to find the architecture of the machine, you can grab it from the following registry entry:
Or if you're using .NET, then you can use this call to get it:
From the command line you can try this:
|
|||||
|
|
You can also get this from an environment variable, |
|||
|
|
Are you actually running a 64-bit version of Windows? If you are running 32-bit Windows on a 64-bit-capable CPU, you will still get |
|||
|
|
AMD64 is a brand of CPU which is based on the x86 architecture. x86-64 more precisely, which is the 64-bit extension of x86. This also relates to bobince's answer. This Knowledge Base article shows you how to determine if your system is 32-bit or 64-bit |
|||||||||
|
|
I think part of the reason it is like this way is that the x86-64 architecture has to allow 32-bit programs to treat it as identical (as far as possible) to a 32-bit environment and make sure that 32-bit programs do not think it is 64-bit only (like the Itanium architecture). This however makes it very frustrating to people who need to access the differences between the x86-64 architecture vs 32 bit architecture on Windows. |
|||
|
|
|
I just faced the same issue while executing the batch from 32-bit Total Commander. When Executing it from 64-bit Explorer, |
||||
|
|