Skip to content

Instantly share code, notes, and snippets.

@haircut
Created May 5, 2017 17:14
Show Gist options
  • Save haircut/931b027f6dc546cbd69584d5c6bfd49f to your computer and use it in GitHub Desktop.
Save haircut/931b027f6dc546cbd69584d5c6bfd49f to your computer and use it in GitHub Desktop.
From @Elios on macadmins#python
#!/usr/bin/python
import os
import pwd
from Foundation import CFPreferencesAppSynchronize
from Foundation import CFPreferencesSetValue
from Foundation import kCFPreferencesCurrentUser
from Foundation import kCFPreferencesCurrentHost
uid = pwd.getpwnam('_locationd').pw_uid
os.setuid(uid)
CFPreferencesSetValue('LocationServicesEnabled', True, 'com.apple.locationd',
kCFPreferencesCurrentUser, kCFPreferencesCurrentHost)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment