4

Possible Duplicate:
Executing .bat file

The title says it all.

I need to create batch files and run and test them. I dont have any Windows machine. If there was any cmd.exe emulator in Ubuntu I would have worked on it.

So do you know emulator that can run .bat/.cmd files?

I know I can use vmware, virtualbox-ose. But to use it I need existing Windows which I dont have.

1 Answers1

8

Install Wine and you can run:

wine cmd /c mybatch.bat
Oli
  • 293,335