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.
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!!
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.