Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to automatically launch an application on USB attach or CD insert on Mac OS X? it's easy on Windows, but I found that AutoRun.Inf does not work on the Mac at all. Please help me. Thanks in advace.

share|improve this question

3 Answers

up vote 15 down vote accepted

You can't. Autostarting applications is impossible under Mac OS X.

The next-best thing, opening the CD folder and showing the installer icon, can be done by using http://autoopen.nibfile.com/ to make a .dmg which can then be burnt to a CD.

share|improve this answer
3  
And I can't tell you how happy I am that this is so :) – Jason Coco Jan 4 '09 at 7:03
3  
Autorun is one of the stupidest things ever invented. ;-) – Ben Alpert Jan 4 '09 at 7:04

Don't know why you were voted down - this is a common question for Windows programmers looking at Macs.

Basically, auto-run is considered a security problem and so is not supported in OSX. Soprano's answer is also a bit overkill. Most installers for OSX simply open up a folder to show the application and, possibly, a readme. Installing is done by dragging the app to your Applications folder.

For other kinds of apps on CDs (say, a slide show or something like that), the developer generally uses hidden folders to hide support data to ensure that the only thing the user will see when they open the CD is the single icon they're supposed to double click to start the app.

share|improve this answer

If you are looking for something for just yourself, you could write a small mac app that runs in the background and watches for a particular USB device (by id) to be attached and then run the program. Ideally a small XML plist could be used to map device IDs to the correct program to run. The XCode SDK has sample code that monitors for device additional and removal to get you started.

share|improve this answer

protected by Community Mar 6 '12 at 12:33

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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