Skip to main content
Question

Disable SIRI first Login

  • October 20, 2016
  • 2 replies
  • 4 views

Forum|alt.badge.img+4

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

davidacland
Forum|alt.badge.img+18
  • Valued Contributor
  • October 20, 2016

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

Forum|alt.badge.img+7
  • Contributor
  • October 20, 2016

Just setup a profile for this. Works great!