Deploy Microsoft Office 2011 Update 14.3.8
2 Votes |
Description
- 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
2618 | |
QA - Ready for Production Level Testing | |
Deploy Microsoft Office 2011 Update 14.3.8 | |
BESC | |
Software Deployment | |
118879745 | |
Mac Software Deployment Wizard | |
mah60 | |
10/9/2013 12:00:00 AM | |
Microsoft Office 2011 Update 14.3.8 | |
hansen_m on 10/14/2013 9:16:04 AM | |
hansen_m on 10/14/2013 9:16:04 AM | |
4359 Views / 12 Downloads | |
![]() ![]() ![]() ![]() ![]() |
Relevance

mac of operating system
Used in 2 fixlets | * Results in a true/false |

(system version >= "10.6" AND system version < "10.10")
Used in 6 fixlets | * Results in a true/false |

exists folder "Microsoft Office 2011" of applications folder
Used in 1 fixlet | * Results in a true/false |

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.dmgSuccess Criteria
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"
This action will be considered successful when the applicability relevance evaluates to false.
Sharing
Social Media: |
Comments
![]() |
|
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. |
![]() |
|
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 |