Processes in Microsoft 365 for setting up Office apps, redeeming product keys, and activating licenses.
Hello Frank,
While I have not technically resolved this issue, I have discovered a work-around. When creating the .msp file in OCT, check off InfoPath as "Not Available." InfoPath can be installed separately afterward using an .xml file. I made a new file called Infopath.xml containing the following:
<Configuration Product="ProPlus"> <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" /> --> <OptionState Id="XDOCSFiles" State="Local" Children="force" /> <Setting Id="SETUP_REBOOT" Value="NEVER" /></Configuration>
Note: you'll need to change "Configuration Product" to reflect your edition of Office. Put this file in your root setup folder and create a batch file to install Office 2010 suite and InfoPath 2010 in sequence. Here's what I did:
@Echo off
Echo Installing Microsoft Office 2010 Pro Plus
Echo.
Echo Please wait ...
Setup.exe /adminfile <filename.msp>
Setup.exe /config Infopath.xml
Hope that helps.