Microsoft Access Runtime
  • 30 May 2024
  • 1 Minute to read
  • Dark
    Light
  • PDF

Microsoft Access Runtime

  • Dark
    Light
  • PDF

Article summary

Microsoft Access Runtime supports a silent switch /quiet but still shows a EULA dialog box which disables running an unattended installation.

To silently install it, use the following workaround:

  1. Extract the files from the Access Runtime setup (e.g. AccessRuntime_X64.exe) using /extract c:\windows\temp
  2. Create an XML configuration file manually:
<Configuration Product="AccessRT">
    <Display Level="None" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    <Logging Type="standard" Path="C:\Windows\Temp\" Template="Microsoft_Access_2013_Runtime_Setup(*).log" />
    <COMPANYNAME Value="Company Name" />
    <Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
  1. Run the extracted c:\windows\temp\setup.exe file with the /config config.xml switch.

Was this article helpful?