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?

0

1 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like