I need a way to add an application to the Login Items from a postflight script which is run as part of my installer. It needs to work on 10.5+. Preferably, it would work i
Here's the options I investigated and experimented with:
This is the method I used. It's very easy to do from a bash file by adding the following line to your postflight.
defaults write /Library/Preferences/loginwindow AutoLaunchedApplicationDictionary -array-add '{Path="/Applications/Your Application.app";}'
Note: You don't even have to worry about adding duplicates if you reinstall the application. The loginwindow process removes duplicates when it reads them.
I tested this on 10.5, 10.6, and 10.7
@noa says this doesn't work on mountain lion (10.8), Haven't personally confirmed.
The unique ramifications of using a Launch Agent are:
Here's some code you could use to create the launch agent in your bash file:
cat > /Library/LaunchAgents/com.your.application.agent.plist << EOT
Label
com.your.application.agent
ProgramArguments
/Applications/Your Application.app/Contents/MacOS/Your Application
RunAtLoad
EOT
I never actually finished this approach. Apparently, this is the approach that Novell takes. Essentially you'd make a foundation application that calls the libraries referenced from this solution: How do you make your App open at login?
Didn't try this but according to this post if you want it to work on tiger you need to use AppleScript..? I can't confirm or deny that but thought this link might be relevant. Editing Mac OS X login items in Objective-C through AppleScript