Deploy Microsoft Office 2011 Update 14.3.8
Log In or Register to download the BES file, and more.

2 Votes

Description

This task will deploy Microsoft Office 2011 Update 14.3.8

- Requires Microsoft Office 2011 Service Pack 1

This task is applicable on Mac OS X 10.6, Mac OS X 10.7, Mac OS X 10.8, Mac OS X 10.9

Property Details

ID2618
StatusQA - Ready for Production Level Testing
TitleDeploy Microsoft Office 2011 Update 14.3.8
DomainBESC
CategorySoftware Deployment
Download Size118879745
SourceMac Software Deployment Wizard
Source IDmah60
Source Release Date10/9/2013 12:00:00 AM
KeywordsMicrosoft Office 2011 Update 14.3.8
Added by on 10/14/2013 9:16:04 AM
Last Modified by on 10/14/2013 9:16:04 AM
Counters 4359 Views / 12 Downloads
User Rating 1 star 2 star 3 star 4 star 5 star * Average over 3 ratings. ** Log In or Register to add your rating.

Relevance

Used in 227 fixlets and 100 analyses   * Results in a true/false
Show indented relevance
mac of operating system
Used in 2 fixlets   * Results in a true/false
Show indented relevance
(system version >= "10.6" AND system version < "10.10")
Used in 6 fixlets   * Results in a true/false
Show indented relevance
exists folder "Microsoft Office 2011" of applications folder
Used in 1 fixlet   * Results in a true/false
Show indented relevance
exists folder "/Applications/Microsoft Office 2011/Microsoft Word.app" whose (version of it < "14.3.8" AND version of it >= "14.1.0") OR exists folder "/Applications/Microsoft Office 2011/Microsoft Excel.app" whose (version of it < "14.3.8" AND version of it >= "14.1.0") OR exists folder "/Applications/Microsoft Office 2011/Microsoft PowerPoint.app" whose (version of it < "14.3.8" AND version of it >= "14.1.0") OR exists folder "/Applications/Microsoft Office 2011/Microsoft Outlook.app" whose (version of it < "14.3.8" AND version of it >= "14.1.0")

Actions

Action 1 (default)

Action Link Click here to initiate the deployment process.
Script Type BigFix Action Script
prefetch Office2011-1438Update_EN-US.dmg sha1:b811c6fc06084e52016aa04ee377993c2e95f1d6 size:118879745 http://download.microsoft.com/download/D/1/E/D1E7CB92-7D4C-4028-BCAD-82E3E547797D/Office2011-1438Update_EN-US.dmg

delete "/tmp/Office2011-1438Update_EN-US.dmg"

move "__Download/Office2011-1438Update_EN-US.dmg" "/tmp/Office2011-1438Update_EN-US.dmg"

wait /usr/bin/hdiutil attach -quiet -nobrowse -mountpoint "/tmp/OFFICE20111438" "/tmp/Office2011-1438Update_EN-US.dmg"

wait /bin/sh -c "/usr/sbin/installer -pkg /tmp/OFFICE20111438/Office\ 2011\ 14.3.8\ Update.pkg -target /"

wait /usr/bin/hdiutil detach -force "/tmp/OFFICE20111438"
Success Criteria

This action will be considered successful when the applicability relevance evaluates to false.


Sharing

Social Media:
Share this page on Yammer

Comments

Log In or Register to leave comments!
jgstew -
This definitely works as is, the "-allowUntrusted" flag is not required for any machine, 10.7 and later. The "-allowUntrusted" flag for 10.7 and later machines only matters for packages that are signed in an invalid way. If a package is signed validly, then "-allowUntrusted" is not needed. If a package is not signed at all, then "-allowUntrusted" is not needed. If this is not working for you as is, then there might be something wrong with your Apple Root CA in your environment. Alternatively, you may be a time traveler or have your clocks set incorrectly.
BrianCanFixIT -
For the love of pete, this will not work. Just like the original bigfix fixlet you need to do the following for the action code: // Use the special install flag only for 10.7+ systems if {system version < "10.7"} wait /bin/sh -c "installer -pkg '/tmp/OFFICE20111438/Office 2011 14.3.8 Update.pkg' -target /" else wait /bin/sh -c "installer -allowUntrusted -pkg '/tmp/OFFICE20111438/Office 2011 14.3.8 Update.pkg' -target /" endif