Skip to content

Instantly share code, notes, and snippets.

@madson
Forked from mtauraso/add_launchd_to_tcc.sh
Last active August 29, 2015 14:26
Show Gist options
  • Save madson/7ea656be55f845573f6f to your computer and use it in GitHub Desktop.
Save madson/7ea656be55f845573f6f to your computer and use it in GitHub Desktop.
TCC Database Script
#!/bin/bash
# This will add lauchd to the list of allowed processes for accessibility access
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db "INSERT or REPLACE INTO access VALUES('kTCCServiceAccessibility','/sbin/osascript',1,1,1,NULL)"
# This outputs the rows in the TCC database
sudo sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db 'select * from access'
echo "Restart is required for these changes to take effect"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment