Disable SIRI first Login

ngidzak
New Contributor

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?

2 REPLIES 2

davidacland
Honored Contributor II
Honored Contributor II

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

koalatee
Contributor II

Just setup a profile for this. Works great!