I know it is possible to run windows files on Mac using cider or Wine, I have CrossOver, but I am totally confused how to do it. What would be the simplist working way to run a windows .exe file on a Mac? This pertains to one that has no GUI, just function.

Hope this isn't too difficult,

HiGuy

link|improve this question
3  
Belongs on superuser. Putting objective c in the title doesn't make it a programming question. – Byron Whitlock Jul 24 '10 at 19:21
feedback

migrated from stackoverflow.com Jul 24 '10 at 20:10

This question came from our site for professional and enthusiast programmers.

3 Answers

Running something like a command-line Windows application on a Mac is, unfortunately, not really possible. Even the most seamlessly integrated solutions (like CrossOver) just create a small Windows environment that the application runs in; you don't get access to things like the output stream or the file system of the application, and I don't think that it has much--if any--access to the host file system.

Beyond that, you'll have to be more specific as to what you're exactly trying to do; there may be options for a specific case, but there's no general solution.

link|improve this answer
feedback

If you use Parallels to run a Windows environment on your Mac, then this is scriptable via AppleScript and you can run WIndows programs from within Mac OS X via AppleScript. You can also generate the equivalent AppleScript commands from the command line (man osascript) or from an Objective-C program if you want to. For an example of how to do this see: http://initapp.com/2006/12/07/start-windows-apps-from-your-osx-doc-parallels-3036/

link|improve this answer
feedback

Install Wine on Mac OS X.

References: 01, 02, 03

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.