How to check processor architecture whether its 32bit or 64bit? One method is to query the registry from the command line. Here’s a one liner command line that will check whether the PC processor is 32bit or 64bit. reg query "HKLM\SYSTEM\ CurrentControlSet\Control\ Session Manager\Environment" | find “ARCHITECTURE” If the output is something like this: PROCESSOR_ARCHITECTURE REG_SZ AMD64 Then it’s a 64bit, if it shows x86 then it’s a 32 bit. reg query "HKLM\SYSTEM\ CurrentControlSet\Control\ Session Manager\Environment" | find “IDENTIFIER” Above query can also identify, the output shows Intel64 for 64bit. Sample Output: PROCESSOR_IDENTIFIER REG_SZ Intel64 Family 6 Model 142 Stepping 10, GenuineIntel Omitting the find option from the “reg query” command will show quite a few information. reg query "HKLM\SYSTEM\ CurrentControlSet\Control\ Session Manager\Envi...
Make the world a better place by sharing knowledge, ideas and anything that you can give that comes from the heart.