Microsoft Access Runtime
- 30 May 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Microsoft Access Runtime
- Updated on 30 May 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
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:
- Extract the files from the Access Runtime setup (e.g. AccessRuntime_X64.exe) using
/extract c:\windows\temp
- 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>
- Run the extracted
c:\windows\temp\setup.exe
file with the/config config.xml
switch.
Was this article helpful?