Software » Microsoft » Access Runtime » 2010
Download x86 " x64 https://www.microsoft.com/en-US/download/details.aspx?id=10910

Silent Install

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

AccessRuntime.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 SharePointDesigner.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="AccessRT">

    <Display Level="none" CompletionNotice="No" SuppressModal="Yes" NoCancel="Yes" AcceptEula="Yes" />
    <Logging Type="Verbose" Path="%temp%" Template="Access Runtime 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 Service Pack 2 into the install source

To integrate or slipstream Updates or Service Packs you simply need to extract it into the Updates folder of your install files.

Let`s do this for an english x86 Service Pack 2.

So first we need to download the Service Pack 2 for Microsoft Access 2010 Runtime from Microsoft. Then we need to extraxt it with following command.

accessrtsp2010-kb2687444-fullfile-x86-en-us.exe /extract

Simply choose the Updates folder of our main Install source. The Installer will automatically update SherePoint Designer during the main install.

ReturnCodes 0
3010

Silent Uninstall

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

Config File

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

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