Posted on 02-06-2019 08:46 AM
So we've disabled users from clicking on Bluetooth in System preferences but users can still turn on bluetooth from the Mouse System Preference screen.
How do people using Jamf manage to disable bluetooth?
Posted on 02-06-2019 12:56 PM
You could always deploy a launchdaemon that runs every minute and calls a script that wacks bluetooth off
I'm a big fan of deploying launchagents & daemons.
defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 0
maybe wack the daemon entirely or unload the daemon as well at login?
launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist
Posted on 02-06-2019 01:36 PM
@Hugonaut does that work with System Integrity Protection enabled?
Posted on 02-06-2019 02:30 PM
Nevermind I followed your advise and now have a launch Daemon running every minute.
Works perfectly