Software » Microsoft » InfoPath » 2013
Homepage InfoPath 2013 for Office 365 ProPlus Subscription
Download x64 infopath_4753-1001_x64_en-us.exe
Download x86 infopath_4753-1001_x86_en-us.exe

Silent Install

first you need to extract the exe file with the extract parameter.

x64

infopath_4753-1001_x64_en-us.exe /extract

x86

infopath_4753-1001_x86_en-us.exe /extract

After that you can install the product with the setup.exe file and the config parameter. You need to link to a prepared config xml file. See below for a working example of this file. You can also find a empty config.xml file in the folder infopathr.ww of the extracted SharePoint install file.

setup.exe /config "config.xml"

Config File

See also the Config.xml file in Office 2010 site from Microsoft.

<Configuration Product="InfoPathr">

    <Display Level="none" CompletionNotice="yes" SuppressModal="yes" AcceptEula="yes" />
    
    <Logging Type="standard" Path="%temp%" Template="Microsoft Office InfoPath Setup(*).txt" />
    
    <USERNAME Value="Customer" />
    
    <COMPANYNAME Value="MyCompany" />
    
    <!-- <INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> -->
    
    <!-- <LIS CACHEACTION="CacheOnly" /> -->
    
    <!-- <LIS SOURCELIST="\\server1\share\Office;\\server2\share\Office" /> -->
    
    <!-- <DistributionPoint Location="\\server\share\Office" /> -->
    
    <!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->
    
    <Setting Id="SETUP_REBOOT" Value="Never" />
    
    <!-- <Command Path="%windir%\system32\msiexec.exe" Args="/i \\server\share\my.msi" QuietArg="/q" ChainPosition="after" Execute="install" /> -->

</Configuration>
ReturnCodes 0
3010

Silent Uninstall

setup.exe /uninstall INFOPATHR /config "SilentUninstallConfig.xml"

Config File

See also the Config.xml file in Office 2010 site from Microsoft.

<Configuration Product="InfoPathr">
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    <Logging Type="Verbose" Path="%temp%" Template="Microsoft Microsoft InfoPath 2013 Deinstall.log" />
    <Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
ReturnCodes 0
1605
3010