Software » Microsoft » Office Standard » 2010
Homepage https://www.microsoft.com/en-us/software-download/office
Download https://www.microsoft.com/en-us/software-download/office

Silent Install

Extract the source somewhere.

setup.exe /config "config.xml"

Config File

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

<Configuration Product="Standard">

    <Display Level="none" CompletionNotice="No" SuppressModal="Yes" NoCancel="Yes" AcceptEula="Yes" />
    <Logging Type="Verbose" Path="%temp%" Template="Microsoft Office Standard 2010 Setup.log" />
    <USERNAME Value="Username" />
    <COMPANYNAME Value="CompanyName" />
    <Setting Id="SETUP_REBOOT" Value="Never" />


    <!-- <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" /> -->
    <!-- <Command Path="%windir%\system32\msiexec.exe" Args="/i \\server\share\my.msi" QuietArg="/q" ChainPosition="after" Execute="install" /> -->
</Configuration>

integrate Updates into the install source

FIXME

ReturnCodes 0
3010

Silent Uninstall

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

Config File

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

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