Created
October 22, 2015 14:33
-
-
Save apettinen/d0b6568116c4ae06ec4b to your computer and use it in GitHub Desktop.
DisableiCloudSetup.mobileconfig
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
<?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