I am looking to allow non-admins to be able to access System Preferences > Security -> Privacy. I'd even settle for just System Preferences > Security.
I've tried the following in OS X 10.10
security authorizationdb write system.preferences allow
security authorizationdb write system.preferences.security allow
Also tried:
security authorizationdb write system.preferences allow
security authorizationdb read system.preferences.security > /path/to/test.plist
default write /path/to/test.plist shared -bool true
security authorizationdb write system.preferences.security < /path/to/test.plist
I also did a dump of the entire sqlite3 db to a text file using:
sqlite3 /var/db/auth.db .dump > /path/to/auth.txt
But I'm not finding anything else that seems relevant.
I've read the post by @rtrouton :
https://derflounder.wordpress.com/2014/02/16/managing-the-authorization-database-in-os-x-mavericks/
And checked out this very well compiled list here of : http://www.dssw.co.uk/reference/authorization-rights/index.html
I'm missing something, just not sure what it is.
EDIT: Fixed a typo.
