본문 바로가기

지식인

[펌/윈도우] 배치파일로 Windows 32비트/64비트 확인하는 방법

728x90

[출처] https://rudas5594.tistory.com/274

Windows 폴더 하위에 SysWOW64 폴더가 존재하는지 안하는지를 확인하면 된다

@echo off

if exist %windir%\SysWOW64 (

 set WinBit=64

) else (

 set WinBit=32

)

echo. Windows %WinBit%Bit Used.

pause> null