Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running wine without displaying the GUI window

I would like to run

wine myapp.exe

without displaying the GUI window.

myapp.exe is a command-line application.

Is it possible?

like image 260
xralf Avatar asked Oct 20 '22 14:10

xralf


1 Answers

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.

like image 181
Pedro Lobito Avatar answered Oct 23 '22 05:10

Pedro Lobito