System::Call "kernel32::GetCurrentProcess() i .s"System::Call "kernel32::IsWow64Process(i s, *i .r0)" 둘 다 써넣는다. 리턴값은0일때 32비트1일때 64비트를 '$0' 에 써준다. Ex) System::Call "kernel32::GetCurrentProcess() i .s"System::Call "kernel32::IsWow64Process(i s, *i .r0)" StrCmp $0 '0' 32Bit 64Bit 32Bit:Messagebox MB_OK 'Windows 32Bit'goto End 64Bit:Messagebox MB_OK 'Windows 64Bit'goto End End:Function End