Last active
December 26, 2015 13:49
-
-
Save gregneagle/7160732 to your computer and use it in GitHub Desktop.
Profile to require user to be an admin to install items (including software updates) from the App Store
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>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadType</key> | |
<string>com.apple.appstore</string> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
<key>PayloadIdentifier</key> | |
<string>org.example.config.appstore</string> | |
<key>PayloadEnabled</key> | |
<true/> | |
<key>PayloadUUID</key> | |
<string>87885FB9-E4EA-40F5-9077-DA8C6940CDAA</string> | |
<key>PayloadDisplayName</key> | |
<string>App Store Configuration</string> | |
<key>restrict-store-softwareupdate-only</key> | |
<false/> | |
<key>restrict-store-disable-app-adoption</key> | |
<true/> | |
<key>restrict-store-require-admin-to-install</key> | |
<true/> | |
</dict> | |
</array> | |
<key>PayloadDescription</key> | |
<string>Sample Org App Store configuration for Mavericks.</string> | |
<key>PayloadDisplayName</key> | |
<string>Sample Org App Store Configuration</string> | |
<key>PayloadIdentifier</key> | |
<string>org.sample.config.appstore</string> | |
<key>PayloadOrganization</key> | |
<string>Sample Organization</string> | |
<key>PayloadRemovalDisallowed</key> | |
<false/> | |
<key>PayloadType</key> | |
<string>Configuration</string> | |
<key>PayloadUUID</key> | |
<string>8E0D9AB3-7C0E-4D1F-8180-FB089A304F54</string> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Been looking for something like this in order to help secure an education environment. Where does this go for it to apply the default profile, and do you know if it would have to be updated for Yosemite?