Disable bluetooth through terminal?
Bonus, is there also a way to turn remove the bluetooth icon from the menu bar using terminal?
MacBook Pro, Mac OS X (10.6.4), Managing 700 Apple devices
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
MacBook Pro, Mac OS X (10.6.4), Managing 700 Apple devices
Above commands worked for me.
And finally relaunching Finder fixed the issue.
I even tried disabling and enabling Airdrop , as suggested by some one in similar post.
Which did not work for me.
Above commands worked for me.
And finally relaunching Finder fixed the issue.
I even tried disabling and enabling Airdrop , as suggested by some one in similar post.
Which did not work for me.
I've been looking into this myself, here's some more commands to add to the list:
defaults read /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState
#read the current pref, returns '0' for off and '1' for on.
--
All of the following will require sudo if run from the command line:
defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 0
#set bluetooth pref to off
defaults write /Library/Preferences/com.apple.Bluetooth.plist ControllerPowerState 1
#set bluetooth pref to on
killall blued
#kill the bluetooth server process
launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist
#unload the daemon
launchctl load /System/Library/LaunchDaemons/com.apple.blued.plist
#reload the daemon
launchctl start com.apple.blued
#restart blued daemon
Thank you!!!!
Thanks so much, very help full commands.
Disable bluetooth through terminal?