지식인
2019. 9. 6.
[펌/윈도우] 배치파일로 Windows 32비트/64비트 확인하는 방법
[출처] 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