Posted on 10-21-2016 01:07 AM
Hi,
does anybody already found solution how to disable Siri setup during first configuration? So I'm using script to disable iCloud, diagnostics and setup windows and enable location services however in macOS Sierra we also have window to enable or disable Siri. I tried with script to modify com.apple.SetupAssistant.plist same as with iCloud but with Siri it's not working.
Any ideas or working solutions?
Solved! Go to Solution.
Posted on 10-21-2016 01:54 AM
[This man has you covered - Suppressing Siri pop-up windows on macOS Sierra](link https://derflounder.wordpress.com/2016/09/20/supressing-siri-pop-up-windows-on-macos-sierra/)
Posted on 10-21-2016 01:56 AM
Do the setup assistant manually then visit /Users/~/Library/Preferences/com.apple.SetupAssistant.plist
Seems like there's a new key for it called DidSeeSiriSetup.
Put this command in your script/workflow and it should skip it, I haven't had a chance to test myself yet.
/usr/bin/defaults write com.apple.SetupAssistant "DidSeeSiriSetup" -bool true
Cheers,
Frank
Posted on 10-21-2016 01:54 AM
[This man has you covered - Suppressing Siri pop-up windows on macOS Sierra](link https://derflounder.wordpress.com/2016/09/20/supressing-siri-pop-up-windows-on-macos-sierra/)
Posted on 10-21-2016 01:56 AM
Do the setup assistant manually then visit /Users/~/Library/Preferences/com.apple.SetupAssistant.plist
Seems like there's a new key for it called DidSeeSiriSetup.
Put this command in your script/workflow and it should skip it, I haven't had a chance to test myself yet.
/usr/bin/defaults write com.apple.SetupAssistant "DidSeeSiriSetup" -bool true
Cheers,
Frank
Posted on 10-21-2016 01:58 AM
@pawel.kopocz Do you mean during the after imaging Adobe Temporary Installer account? I cant find a way to stop that one from appearing. It looks like the adobeinstall account doesnt get a home folder created, so it doesnt get the preferences from the User Template that are created by rtoutons scripts.
Posted on 10-24-2016 01:23 AM
Posted on 10-27-2016 04:23 PM
I know that you've got it worked out already but I'd definitely recommend going this route, especially if you don't want your users to Enable Siri at all.
https://www.jamf.com/jamf-nation/discussions/21154/macos-x-sierra-went-gm-anyone-kill-siri-yet
Posted on 07-06-2017 07:34 AM
@pawel.kopocz I too am struggling in disabling Siri at the second reboot during a Casper imaging workflow.
How exactly did you get passed this issue?
Posted on 09-08-2017 08:26 AM
I ran both of these commands but neither were successful:
sudo defaults write /System/Library/User Template/Non_localized/Library/Preferences/com.apple.SetupAssistant DidSeeSiriSetup -bool TRUE
/usr/bin/defaults write com.apple.SetupAssistant "DidSeeSiriSetup" -bool true
Users are still prompted to sign in with an Apple ID.
Any other ideas?