Glam Prestige Journal

Bright entertainment trends with youth appeal.

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?

enter image description here

2

1 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy