Windows 7 How do I find out if my machine has 32 bit or 64 bit windows

bob24

Senior Member
Very simple question, with a very simple answer I hope. Where can I find out if my windows 7 is 32 bit or 64?
thanks.
 
found it, right click My computer and then click properties.
So why does my CMD box say system32 at the top of it? (c:\Windows\system32\CMD stop exe)
 
Last edited:
Hi Bob,

This is the way it should behave, as you are running CMD as Administrator it will use the 64 Bit libraries to process any commands. c:\windows\system32 is where the 64-bit binaries are kept. C:\windows\SysWOW64 contains 32-bit binaries.
 
That may seem a little illogical to many, but it is a deliberate action by Microsoft.
The programmers have hard coded the path to the system folder in their applications source code. They have included "System32" in the folder path. In order to preserve compatibility, if the application is converted to 64-bit code, the 64-bit system folder is still named System32. Makes you dizzy!!
 
Last edited:
compatibility is all I need. I am trying to get to grips with python and finding files all over the place that don't like one another. At least one bit of compatibility helps.
Thanks for the answers and the information.
 
Back
Top