"윈도우 비트 확인"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source lang='cli'> +<source lang='console'>))
 
33번째 줄: 33번째 줄:
<source lang='bash'>
<source lang='bash'>
wmic os get osarchitecture
wmic os get osarchitecture
wmic cpu get datawidth
</source>
</source>


40번째 줄: 41번째 줄:
OSArchitecture
OSArchitecture
64-bit
64-bit
C:\Users\zetawiki>wmic cpu get datawidth
DataWidth
64
64
64
64
</source>
</source>
<source lang='console'>
<source lang='console'>
C:\Documents and Settings\jmnote>wmic os get osarchitecture
C:\Documents and Settings\jmnote>wmic os get osarchitecture

2017년 1월 6일 (금) 11:16 기준 최신판

윈도우 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 }}