Hi Everyone.
Do you know where to get this offline installer?
I am distributing .accde file, but I am not sure if end-user has/dont have MSA, so I want them to install Access 365 runtime. Some of their PC dont have internet access.
So I wish I could send them offline installer file via USB thumdrive.
There were many good responses in this thread, but the original question does not seem to have been answered. As this is one of the first results that came up in a Google search when I was trying to address this specific issue for myself, I figured I should post what I have figured out that should allow you to have an offline installer for the Microsoft Access 365 Runtime.
Microsoft provides a tool called the Office Deployment Tool (ODT). You can download it here: (link not allowed)
Once you have downloaded it and extract it to a folder such as C:\ODT (if you use a different folder, change your references in my examples below accordingly. Also, I wanted to use the 32 bit version but change the 32 below to 64 if you want the 64 bit version).
Then create an file called accessruntime.xml in that folder with the following contents:
<Configuration>
<Add SourcePath="C:\ODT\AccessRuntime" OfficeClientEdition="32" Channel="Current">
<Product ID="AccessRuntimeRetail">
<Language ID="en-us" />
</Product>
</Add>
<Updates Enabled="FALSE"/>
<Display Level="None" AcceptEULA="TRUE" />
</Configuration>
Then bring up a command prompt and enter the following 2 commands:
cd C:\ODT
setup.exe /download accessruntime.xml
Finally, copy this ODT folder to wherever you need to run it. Bring up a administrative command prompt, and use cd to navigate to wherever you have the ODT folder located. Then run:
setup.exe /configure accessruntime.xml
Note: For the install, it is important that you run the command prompt as an administrator. If you run "setup.exe /configure accessruntime.xml" via a regular command prompt, it will give you a misleading error message ("We couldn't find the specified configuration file").