Office 2010 - Adding Office Programs
We have developed and deployed Microsoft Office Professional Plus x86 2010 using an .msp file created with the OCT. This deployment installs all the Office programs (Word, Excel, PowerPoint, Outlook etc.) EXCEPT for Access and Publisher. Now, we want to be able to add Access and / or Publisher to selected workstations separately, leaving the original Office Pro Suite intact. How do we create packages to install individual programs to existing Office 2010 install?
Thanks!
Thanks!
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
chichora123
13 years ago
You would need to create 2 custom xml files & copy them over to ProPlus.WW directory. Your content should look something like this.
Access.xml
Publisher.xml
COMMAND LINE (This is what i used for Offcie07 u should change this for Office 2010)
\\server\share\Office12\setup.exe /config \\server\share\Office12\Pro.WW\Access.xml
Good luck
Access.xml
<Configuration Product="Access">
<Display Level="none" CompletionNotice="no" SuppressModal="yes"
AcceptEula="yes" />
<Logging Type="standard" Path="%temp%" Template="Microsoft Office
Setup(*).txt" />
<PIDKEY Value="LicenseKey" />
<USERNAME Value="IT Dep." />
<COMPANYNAME Value="ABC Company" />
<INSTALLLOCATION Value="%programfiles%\Microsoft Office" />
<!-- Access -->
<OptionState State="Local" Children="Force" Id="ACCESSFiles" />
<Setting Id="Reboot" Value="Never" />
</Configuration>
Publisher.xml
<Configuration Product="Publisher">
<Display Level="none" CompletionNotice="no" SuppressModal="yes"
AcceptEula="yes" />
<Logging Type="standard" Path="%temp%" Template="Microsoft Office
Setup(*).txt" />
<PIDKEY Value="LicenseKey" />
<USERNAME Value="IT Dep." />
<COMPANYNAME Value="ABC Company" />
<INSTALLLOCATION Value="%programfiles%\Microsoft Office" />
<!-- Publisher -->
<OptionState State="Local" Children="Force" Id="PubPrimary" />
<Setting Id="Reboot" Value="Never" />
</Configuration>
COMMAND LINE (This is what i used for Offcie07 u should change this for Office 2010)
\\server\share\Office12\setup.exe /config \\server\share\Office12\Pro.WW\Access.xml
Good luck
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.