Posted on 10-20-2016 11:20 AM
im looking for a Zero Touch Solution for disabling SIRI for all users on first login, the same way that is done with iCloud.
Any ideas?
Posted on 10-20-2016 11:30 AM
Hi @ngidzak
It's in the same preference file as the iCloud stuff in a key called DidSeeSiriSetup
.
We've used the defaults command to set it but a config profile would probably also work:
for USER_TEMPLATE in "/System/Library/User Template"/*
do
/usr/bin/defaults write "${USER_TEMPLATE}"/Library/Preferences/com.apple.SetupAssistant DidSeeSiriSetup -bool TRUE
done
Posted on 10-20-2016 04:31 PM
Just setup a profile for this. Works great!