Skip to content

Instantly share code, notes, and snippets.

@BobVul
Created June 22, 2017 06:32
Show Gist options
  • Save BobVul/5e5022d5b62b9ef39d149a595ab338a6 to your computer and use it in GitHub Desktop.
Save BobVul/5e5022d5b62b9ef39d149a595ab338a6 to your computer and use it in GitHub Desktop.
root@test32:~# cat /etc/issue
Ubuntu 17.04 \n \l
root@test32:~# uname -p
i686
root@test32:~# wine cmd /c test.bat
Z:\root>if EXIST C:\windows\SysWOW64 (echo 64)else echo 32
32
root@test64:~# cat /etc/issue
Ubuntu 17.04 \n \l
root@test64:~# uname -p
x86_64
root@test64:~# wine64 cmd /c test.bat
fixme:service:scmdatabase_autostart_services Auto-start service L"MountMgr" failed to start: 2
Z:\root>if EXIST C:\windows\SysWOW64 (echo 64)else echo 32
64
root@test64:~# wine cmd /c test.bat
Z:\root>if EXIST C:\windows\SysWOW64 (echo 64)else echo 32
64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment