En Windows Vista y versiones posteriores, puede ejecutar el comando
wmic os get osarchitecture
para saber si es de 32 o de 64 bits.
En sistemas operativos similares a Unix, puede escribir uname -m
para mostrar la arquitectura:
$ uname -m
x86_64
En Windows, siga la guía de Microsoft:
Para averiguar si su computadora ejecuta una versión de Windows de 32 bits o de 64 bits en Windows 7 o Windows Vista, haga lo siguiente:
Open System by clicking the Start button, right-clicking Computer, and then clicking Properties.
Under System, you can view the system type.
If your computer is running Windows XP, do the following:
Click Start.
Right-click My Computer, and then click Properties.
If you don't see "x64 Edition" listed, then you're running the 32-bit version of Windows XP.
If "x64 Edition" is listed under System, you're running the 64-bit version of Windows XP.
Desde la consola ejecuta
set
y busca el PROCESSOR_ARCHITECTURE value
. En mi caso:
PROCESSOR_ARCHITECTURE=AMD64
O simplemente imprima desde el principio
echo %PROCESSOR_ARCHITECTURE%