Here is a quick command line that you can run as any user that will tell you if you are running Windows 32bit or 64bit.
wmic OS get OSArchitecture
This should output something similar to this:
There is a PowerShell equivalent as well:
(gwmi win32_computersystem).SystemType
This may be useful for anyone who is using remote commands in PowerShell.
Paul
Leave A Comment