Skip to content

Instantly share code, notes, and snippets.

@gregneagle
Last active December 26, 2015 13:49
Show Gist options
  • Save gregneagle/7160732 to your computer and use it in GitHub Desktop.
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
<?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>
@Muertog
Copy link

Muertog commented Jul 31, 2015

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment