I am running OS X 10.11.6.
I am seeing this warning in my Console system log every 10 seconds.
6/6/20 12:51:18.676 PM cloudpaird[28573]: DEBUG cloudpaird: system does not support Continuity
Any ideas on how to stop the service which is generating these messages?
21 Answer
This post had the answer:
disable_handoff.sh:
#!/bin/bash
#LocalHomes=$(/usr/bin/dscl . -list /Users NFSHomeDirectory | grep -v /var/ | grep -v /Library/ | awk '$2 ~ /^\// {print $2;}')
LocalHomes=$(ls -l /dev/console | awk '{ print $3 }')
for OneHome in $LocalHomes; do userName=$(/bin/echo $OneHome | awk -F "/" '{print $NF;}') sudo -u $userName defaults write $OneHome/Library/Preferences/ByHost/com.apple.coreservices.useractivityd.plist ActivityAdvertisingAllowed -bool no sudo -u $userName defaults write $OneHome/Library/Preferences/ByHost/com.apple.coreservices.useractivityd.plist ActivityReceivingAllowed -bool no
done