Sous Windows Vista et versions ultérieures, vous pouvez exécuter la commande
wmic os get osarchitecture
pour savoir s'il s'agit de 32 ou 64 bits.
Sur les systèmes d'exploitation de type Unix, vous pouvez taper uname -m
pour montrer l'architecture :
$ uname -m
x86_64
Sous Windows suivez le guide de Microsoft :
Pour savoir si votre ordinateur exécute une version 32 bits ou 64 bits de Windows sous Windows 7 ou Windows Vista, procédez comme suit :
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.
Depuis la console, lancez
set
et recherchez le PROCESSOR_ARCHITECTURE value
. Dans mon cas :
PROCESSOR_ARCHITECTURE=AMD64
Ou imprimez depuis le début
echo %PROCESSOR_ARCHITECTURE%