TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Why Download a Downloader to Download an app?

22 点作者 phl大约 4 年前
Why do some companies distribute thair downloadable software through a downloadable custom downloader instead of offering the full installer directly to download? It has puzzled me several times throughout the last 20 years. I can not come up with a good reason. Especially when the custom downloader doesn't suppoert resuming interrupted downloads, display remaining time, current download speed or how much data is being downloaded. Notable example is the Spofify (Mac) downloader. I would really like to know what are good reasons from a UX, business or technical perspective to do that.

9 条评论

kdumont大约 4 年前
Could be because of EV app certificates (which get rid of the warning screen when you install a desktop app). These require a number of installs before the warning goes away. When you modify the executable at all though, the counter resets. Instead, if you keep the same install executable and fetch the latest version of the app, you can keep from resetting that counter. Just going from my experience.
评论 #27007065 未加载
评论 #27005671 未加载
评论 #27013511 未加载
frou_dh大约 4 年前
I always assumed that the in-browser download completing ~instantly and a native branded GUI establishing itself as a separate window must make the average user <i>slightly</i> more likely to follow through with the installation, instead of forgetting about the download. Basically an attention trick.
Jugurtha大约 4 年前
I&#x27;m not sure, but I think it&#x27;s about resumable downloads and handling downloading errors.<p>I practically never download anything large through a browser: I get the link and then use `wget -c` to make sure I get the file, automatically retries when connection is lost and re-established, etc, instead of waiting a long time and then checking the download in the browser and find out it failed a few minutes after it started for whatever reason.<p>If it&#x27;s a couple of megabytes, I use the browser. I don&#x27;t trust the browser with larger downloads.<p>The &quot;app downloader&quot; may be doing similar things.
评论 #27011150 未加载
评论 #27009382 未加载
hctaw大约 4 年前
When I&#x27;ve done it in the past the reason was that the &quot;downloader&quot; was more like a bootstrapper to get the app on the machine with different logic if the app was already installed&#x2F;not installed, and to migrate between versions if necessary - without corrupting the existing installation, if it exists.<p>Download &amp; Install is filled with points of failure and have few ways of performing the modifications atomically. Its better to have this correct than have nice information displays. But this depends heavily on what the app structure looks like.<p>&gt; Especially when the custom downloader doesn&#x27;t suppoert resuming interrupted downloads, display remaining time, current download speed or how much data is being downloaded<p>These things are not always easy, are usually lies, and add very little value to the application. Be happy they haven&#x27;t hyper optimized first time installation or new user onboarding, since you usually only do it once.
评论 #27016965 未加载
thedewil大约 4 年前
They generally download the latest package, according to the computer specifications. You don&#x27;t have to choose if it&#x27;s 32-bit or 64-bit. The provider doesn&#x27;t need to update the installer app itself if there&#x27;s an updated package.
readonthegoapp大约 4 年前
Browsers used to not pick up where failed downloads left off<p>Firewall rules could block .zip and .exe downloads that were not approved<p>Comm lines and ftp&#x2F;http servers were slower<p>1GB used to seem like a lot and could take hours
Perolan大约 4 年前
In the case of my company&#x27;s software it&#x27;s for ease of deployment for new versions. When you click download you get a gui that will step you settings etc. I don&#x27;t want to rebuild and re-sign the gui every time I have a patch and need to change its install behavior slightly, so it downloads the latest installer dll and executes that in order to handle any new flags, configs, added binaries, etc.<p>All of this is done behind the scenes though, so your average end user doesn&#x27;t even notice.
sreekotay大约 4 年前
Basically so that executable software is downloaded running and given PERMISSIONS as quickly as possible.
krzepah大约 4 年前
The most stupid thing I can think of is that the downloader changes version less often that the said software. So you download your &quot;downloader&quot; which points you to the latest version of the software.