Posted on 11-29-2016 09:45 AM
I am currently converting our monster first run script to Config Profiles, and wondering how to implement these keys:
<key>LastPreLoginTasksPerformedBuild</key> <string>15D21</string> <key>LastPreLoginTasksPerformedVersion</key> <string>10.11.4</string> <key>LastSeenBuddyBuildVersion</key> <string>15D21</string> <key>LastSeenCloudProductVersion</key>
If they are tied to versions, what is the best way to handle it, just update the profile when a new version comes out before any client updates?
Posted on 11-29-2016 01:58 PM
You could create a Property List like this:
<?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>LastPreLoginTasksPerformedBuild</key>
<string>15D21</string>
<key>LastPreLoginTasksPerformedVersion</key>
<string>10.11.4</string>
<key>LastSeenBuddyBuildVersion</key>
<string>15D21</string>
<key>LastSeenCloudProductVersion</key>
</dict>
</plist>
Upload the Property List in a Configuration Profile. Take the payload "Custom Settings" for this.
Posted on 11-30-2016 05:40 AM
And what just update version and build number every time a new one comes out?