Running .exe files in Mac OS X - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:40:29Z http://stackoverflow.com/feeds/question/680155 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x -1 Running .exe files in Mac OS X euphoria83 2009-03-25T03:48:21Z 2009-03-25T21:34:38Z <p>I am a <strong>Mac user</strong> who wants to run a few <strong>.exe files</strong> from my Java process using Process and Runtime classes.</p> <p>I know that it is <strong>not possible</strong> to execute .exe files in general in <strong>Mac OS X</strong>.</p> <p>Is there a Mac application which can wrap these .exe files so that they can be executed ? Does Apple provide anything by itself ?</p> <p>The alternative I am using now is to run the Java process in Windows. Yet, it is cumbersome in general.</p> http://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x/680159#680159 1 Answer by Evan Teran for Running .exe files in Mac OS X Evan Teran 2009-03-25T03:49:55Z 2009-03-25T03:49:55Z <p>I don't know if it exists, but you would need something like wine for OSX. The reason why is that the .exe would nearly certainly use OS specific system calls and library functions.</p> <p><strong>EDIT:</strong> looks like it <a href="http://wiki.winehq.org/MacOSX" rel="nofollow">does exist</a></p> http://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x/680167#680167 4 Answer by greyfade for Running .exe files in Mac OS X greyfade 2009-03-25T03:56:40Z 2009-03-25T21:34:38Z <p><a href="http://darwine.sourceforge.net/" rel="nofollow">Darwine</a></p> <p>Edit: I should probably point out that this is not a 100% solution. Virtualized Windows will nearly always work better, through Parallels or some similar virtualization software. But Darwine is free and runs most Windows software acceptably.</p> http://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x/680183#680183 3 Answer by gbrandt for Running .exe files in Mac OS X gbrandt 2009-03-25T04:05:55Z 2009-03-25T04:05:55Z <p>Besides wine you can get <a href="http://www.virtualbox.org/" rel="nofollow">VirtualBox</a>(free), <a href="http://www.parallels.com/products/desktop/" rel="nofollow">Parallels</a>($$$) or <a href="https://www.vmware.com/products/fusion/" rel="nofollow">VMWare</a>($$$).</p> http://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x/680202#680202 1 Answer by Anonymous for Running .exe files in Mac OS X Anonymous 2009-03-25T04:18:53Z 2009-03-25T04:18:53Z <p>Well, if it's a .NET application then you can possibly run it with Mono, but I'm betting it's a native binary and you'll have to use something like the aforementioned Wine. I thought it was really cool the first time I ran a .exe using Mono on OSX, it just felt wrong, so I had to share.</p>