Windows Vista 以降では、コマンドを実行できます
wmic os get osarchitecture
32 ビットか 64 ビットかを調べます。
Unix ライクな OS では uname -m
と入力できます アーキテクチャを表示するには:
$ uname -m
x86_64
Windows では、Microsoft のガイドに従ってください:
<ブロック引用>お使いのコンピューターが Windows 7 または Windows Vista で 32 ビット バージョンまたは 64 ビット バージョンの Windows を実行しているかどうかを確認するには、次の手順を実行します。
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.
コンソール実行から
set
PROCESSOR_ARCHITECTURE value
を探します .私の場合:
PROCESSOR_ARCHITECTURE=AMD64
または最初から印刷する
echo %PROCESSOR_ARCHITECTURE%