Created
October 24, 2013 19:02
-
-
Save dstranathan/7143066 to your computer and use it in GitHub Desktop.
Disable iCloud prompts at login time for new users in OS X 10.9 Mavericks.
Thanks to chilcote (https://gist.github.com/chilcote/7141976)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable iCloud prompts | |
# Thanks to chilcote (https://gist.github.com/chilcote/7141976) | |
osvers_major=$(sw_vers -productVersion | awk -F. '{print $1}') | |
osvers_minor=$(sw_vers -productVersion | awk -F. '{print $2}') | |
/usr/bin/defaults write /System/Library/User\ Template/English.lproj/Library/Preferences/com.apple.SetupAssistant DidSeeCloudSetup -bool true | |
/usr/bin/defaults write /System/Library/User\ Template/English.lproj/Library/Preferences/com.apple.SetupAssistant GestureMovieSeen none | |
/usr/bin/defaults write /System/Library/User\ Template/English.lproj/Library/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment