Skip to content

Instantly share code, notes, and snippets.

@apettinen
Created October 22, 2015 14:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apettinen/d0b6568116c4ae06ec4b to your computer and use it in GitHub Desktop.
Save apettinen/d0b6568116c4ae06ec4b to your computer and use it in GitHub Desktop.
DisableiCloudSetup.mobileconfig
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadIdentifier</key>
<string>YOUR IDENTIFIER HERE</string>
<key>PayloadRemovalDisallowed</key>
<false/>
<key>PayloadScope</key>
<string>System</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>UUID GOES HERE</string>
<key>PayloadOrganization</key>
<string>YOUR ORG</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadDisplayName</key>
<string>Disable iCloud at setup</string>
<key>PayloadDescription</key>
<string>Disable iCloud Setup in login</string>
<key>PayloadContent</key>
<array>
<dict>
<key>PayloadType</key>
<string>com.apple.SetupAssistant.managed</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>PayloadIdentifier</key>
<string>ANOTHER IDENTIFIER HERE</string>
<key>PayloadEnabled</key>
<true/>
<key>PayloadUUID</key>
<string>ANOTHER UUID HERE</string>
<key>PayloadDisplayName</key>
<string>Login Window</string>
<key>SkipCloudSetup</key>
<true/>
</dict>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment