Running .exe files in Mac OS X - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:40:29Zhttp://stackoverflow.com/feeds/question/680155http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/680155/running-exe-files-in-mac-os-x-1Running .exe files in Mac OS Xeuphoria832009-03-25T03:48:21Z2009-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#6801591Answer by Evan Teran for Running .exe files in Mac OS XEvan Teran2009-03-25T03:49:55Z2009-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#6801674Answer by greyfade for Running .exe files in Mac OS Xgreyfade2009-03-25T03:56:40Z2009-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#6801833Answer by gbrandt for Running .exe files in Mac OS Xgbrandt2009-03-25T04:05:55Z2009-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#6802021Answer by Anonymous for Running .exe files in Mac OS XAnonymous2009-03-25T04:18:53Z2009-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>