Created
April 10, 2017 19:00
-
-
Save badstreff/35d3c0f7f251e53190e791c7a1913742 to your computer and use it in GitHub Desktop.
Quick profile showing how to force homepage in safari for sierra
This file contains hidden or 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>edu.shsu.profile.safari</string> | |
| <key>PayloadRemovalDisallowed</key> | |
| <true/> | |
| <key>PayloadScope</key> | |
| <string>System</string> | |
| <key>PayloadType</key> | |
| <string>Configuration</string> | |
| <key>PayloadUUID</key> | |
| <string>sameple-blah</string> | |
| <key>PayloadVersion</key> | |
| <integer>1</integer> | |
| <key>PayloadDisplayName</key> | |
| <string>Safari</string> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>PayloadType</key> | |
| <string>com.apple.ManagedClient.preferences</string> | |
| <key>PayloadVersion</key> | |
| <integer>1</integer> | |
| <key>PayloadIdentifier</key> | |
| <string>com.apple.mdm.blah</string> | |
| <key>PayloadUUID</key> | |
| <string>sample-UUID</string> | |
| <key>PayloadEnabled</key> | |
| <true/> | |
| <key>PayloadDisplayName</key> | |
| <string>Custom</string> | |
| <key>PayloadContent</key> | |
| <dict> | |
| <key>com.apple.Safari</key> | |
| <dict> | |
| <key>Forced</key> | |
| <array> | |
| <dict> | |
| <key>mcx_preference_settings</key> | |
| <dict> | |
| <key>HomePage</key> | |
| <string>http://shsu.edu/</string> | |
| <key>NewWindowBehavior</key> | |
| <integer>0</integer> | |
| </dict> | |
| </dict> | |
| </array> | |
| </dict> | |
| </dict> | |
| </dict> | |
| </array> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment