- 윈도우 BIT 확인
- 윈도우 비트 확인
- 윈도우 32비트 64비트 확인
- 윈도우 프로세서 아키텍처 확인
1 방법 1: 환경변수[ | ]
- 명령어
Bash
Copy
echo %PROCESSOR_ARCHITECTURE%
- 실행예시 (64비트)
Console
Copy
C:\Users\zetawiki>echo %PROCESSOR_ARCHITECTURE%
AMD64
- 실행예시 (32비트)
Console
Copy
C:\Users\zetawiki>echo %PROCESSOR_ARCHITECTURE%
x86
2 방법 2: systeminfo[ | ]
Console
Copy
C:\Users\zetawiki>systeminfo | findstr based
시스템 종류: x64-based PC
- → 64비트
3 방법 3: wmic[ | ]
- 명령어
Bash
Copy
wmic os get osarchitecture
wmic cpu get datawidth
- 실행예시 (64비트)
Console
Copy
C:\Users\zetawiki>wmic os get osarchitecture
OSArchitecture
64-bit
C:\Users\zetawiki>wmic cpu get datawidth
DataWidth
64
64
64
64
Console
Copy
C:\Documents and Settings\jmnote>wmic os get osarchitecture
노드 - JMNOTE-PC
오류:
코드 = 0x80041017
설명 = 유효하지 않은 쿼리입니다.
기능 = WMI
- → 윈도우XP에서는 실행불가
4 방법 4: PowerShell[ | ]
Console
Copy
PS C:\Users\zetawiki> [Environment]::Is64BitOperatingSystem
True
5 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.
- 분류 댓글:
- 윈도우 (9)
FastStone 이미지 뷰어 ― John Jeong윈도우 98 ― …윈도우 openssl 설치 ― …윈도우 TeX Live 설치 ― Pinkcrimson윈도우 TeX Live 설치 ― Pinkcrimson윈도우 TeX Live 설치 ― Pinkcrimson윈도우 단축키 ― Kyeseung Kim윈도우 단축키 ― John Jeong윈도우에 SFTP 서버 구축하기 ― …