윈도우 비트 확인

윈도우 BIT 확인
윈도우 비트 확인
윈도우 32비트 64비트 확인
윈도우 프로세서 아키텍처 확인

1 방법 1: 환경변수[ | ]

명령어
echo %PROCESSOR_ARCHITECTURE%
실행예시 (64비트)
C:\Users\zetawiki>echo %PROCESSOR_ARCHITECTURE%
AMD64
실행예시 (32비트)
C:\Users\zetawiki>echo %PROCESSOR_ARCHITECTURE%
x86

2 방법 2: systeminfo[ | ]

C:\Users\zetawiki>systeminfo | findstr based
시스템 종류:             x64-based PC
→ 64비트

3 방법 3: wmic[ | ]

명령어
wmic os get osarchitecture
wmic cpu get datawidth
실행예시 (64비트)
C:\Users\zetawiki>wmic os get osarchitecture
OSArchitecture
64-bit
C:\Users\zetawiki>wmic cpu get datawidth
DataWidth
64
64
64
64
C:\Documents and Settings\jmnote>wmic os get osarchitecture
노드 - JMNOTE-PC
오류:
코드 = 0x80041017
설명 = 유효하지 않은 쿼리입니다.
기능 = WMI
→ 윈도우XP에서는 실행불가

4 방법 4: PowerShell[ | ]

PS C:\Users\zetawiki> [Environment]::Is64BitOperatingSystem
True

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}