On 10/22/10 7:42 AM, Martin Gregorie wrote:
On Fri, 2010-10-22 at 16:10 +0200, SÃnia LilÃo wrote:
Hi all!
I have a .bat file that I need to run on a machine that runs Linux.
Is it possible to run a .bat file under WINE?
Yes, but you need to run the Windows shell explicitly and tell it to run
the .BAT file rather than running interactively:
wine cmd /c test.bat
If the .bat file calls a DOS program, you might be better off with
DOSBox. If it calls a Windows program, Wine is the way to go.
James McKenzie