I would like to run
wine myapp.exe without displaying the GUI window.
myapp.exe is a command-line application.
Is it possible?
01 Answer
Yes, it is.
Use the /nogui switch, i.e.:
wine "myapp.exe /nogui" If this doesn't work, you may be able to get it working by installing gdiplus extension for WINE.
4