Matt Schalk and I are excited to discuss multiple deployment strategies for OS X Mountain Lion! The session will be held Wednesday, October 24 at 1:00 PM at the Wurtele Thrust Stage.
Throughout the session we will reference a couple of different resources, all of which are available below:
KB Article walking through deployment options: https://jamfnation.jamfsoftware.com/article.html?id=173
Extension attribute to check on readiness of Mountain Lion Installer:
#!/bin/sh
if [ -e /Library/Application Support/JAMF/Install OS X Mountain Lion.app ]
then
size=`du -sm /Library/Application Support/JAMF/Install OS X Mountain Lion.app | awk '{print $1}'`
else
echo "<result>Not Available</result>"
exit 0
fi
if [ $size -lt 4165 ]
then
echo "<result>Incomplete</result>"
exit 0
fi
if [ $size -eq 4165 ]
then
echo "<result>Available</result>"
exit 0
fi
if [ $size -gt 4165 ]
then
echo "<result>Oversized</result>"
exit 0
fi
Command to show recovery partition: ```
sudo diskutil mount disk0s3
Script to adjust partition type:
!/bin/sh
/usr/sbin/diskutil unmount /dev/disk0s3
/usr/sbin/asr adjust -target /dev/disk0s3 -settype Apple_Boot
Script to call Mountain Lion Installer:
!/bin/sh
/Users/Shared/Install OS X Mountain Lion.app/Contents/MacOS/Install OS X Mountain Lion&
```
*REMINDER* Be sure to test any scripts, extension attributes, and workflows before moving them into production!
Please use this thread as a resource for any further information that may be posted, as well as a place to hold any discussions about the session.
Matt and I will also be available in person to answer any questions at the overtime session on Wednesday from 2:15 - 3:15 PM in the Nelson Classroom.
Looking forward to see everyone there!
