46

It is probably not the name of these installers. By online installer I mean the little executable we download and execute, which download the true software I are going to install.

There are so many of them, such as in Chrome installation, Visual Studio Express, etc.

What are the purpose of these online installer? I think they are quite inconvenient.

bwDraco
  • 46,683
onemach
  • 2,875

6 Answers6

73

Reasons vary.

They allow you to download only what you actually want to install. If you have options during the installation, or the program is available in both 32 bit or 64 bit variants, or variants based on the OS version you're running, you don't download more than you actually install. Other distributors might make you choose the correct variant before you download the program at all; and some users might not be capable of selecting the correct option.

Some programs come bundled with dependencies, like runtimes or frameworks (I have seen Visual C++ Runtime, .NET, DirectX; Java could also be possible). Online installers restrict download and installation of those to machines that don't already have them (thanks @billc.cn).

Additionally, it allows the software makers to make sure you always install only up to date versions instead of one you downloaded a year ago. Some Downloads folder contents are downright scary.

It might even be that they save some bandwidth, since more users might be downloading the installer than are actually installing the program.

They are also a possible way to inform the software makers about every actual installation, as opposed to installer downloads.

Daniel Beck
  • 111,893
17

For Blizzard products, the downloader optionally uses bittorrent behind the scenes.

Also, some browsers don't support restarting downloads, so this can make large downloads possible on old computers.

dhasenan
  • 310
12

Using an online installer downloads the installation files, from the installer. This means you get the absolute latest version possible, from the provider of the installer.

With an offline installer, it might not be updated as frequently, so your version could be slightly behind.

An example, Chrome. Instead of constantly having to update the installer, they can just push new content to a web server, and the same installer can handle it indefinitely.

11
  1. If the software consists of multiple parts (like .NET) they can install part 1 while downloading part 2
  2. If the software contains optional components, they can save time if the user hasn’t selected them.
kinokijuf
  • 8,364
1

It also saves you diskspace. The add/remove programs feature works by caching the installer file. It doesn't matter a lot with small applications; but would you rather cache the several MB online installer for something like the .net framework, or the several hundred MB offline installer?

0

I always assumed this was done from a UX perspective: if the network connection cuts out, then some browsers will not be able to resume the download, and some users will not be motivated enough to find out what happened and manually restart the process.

On the other hand, with an online installer, the developers can be sure that the download system is robust and won't have this problem. This can potentially lead to less cognitive load on users, depending on the browser, and a higher rate of successful installations.