I'm working on an application which stores some preferences globally, for all users. It does so by passing kCFPreferencesAnyUser in as the userName parameter of CFPreferencesSetValue.
Prior to OS X version 10.7 (Lion), this worked fine. However, when this code runs on Lion, the call fails, even when the application is run from an Admin account. The documentation for CFPreferencesSetValue states:
Note that you can only save preferences for “Any User” if you have Admin privileges.
...and I see from searching around that the privileges required changed between Snow Leopard and Lion (from admin to root). It also seems that I could continue using similar code by following Apple's SMJobBless sample code...
...to securely install a helper tool that performs a privileged operation...
I note however that the documentation for kCFPreferencesAnyUser itself states:
This domain is currently unsupported.
Is using a helper tool the correct way to go about creating all-user preferences? Or is there some other, supported method I should be using?