Live data from Hacker News

Why Microsoft Store Discontinued Support for Office Apps

bgr.com

31–40 of 73 posts

Re: Why Microsoft Store Discontinued Support for Office Apps

#31
post #3

I’ve read the article and still don’t know why.

Content marketing and modern “journalism” at it’s finest

BGR used to be a decent blog when they were covering Blackberries... but once your main jam dies off all you can do is turn to longform slop a decade later.

Re: Why Microsoft Store Discontinued Support for Office Apps

#32
post #14

the installation story for devs writing windows apps has been dreadful for 3 decades. vs used to help you build setup.exe, which was always a huge chore to use. clickonce was launched to replace all this with hosted manifests and auto-updates and modern features like that, and immediately forgotten about because it was so broken. nobody ever used it. then they brought out WinUI and the windows store, which was so ove…

Not to mention the need for a code signing certificate, which even in 2026 is a gigantic and expensive hassle to obtain. You can spend weeks of effort and hundreds of dollars just to ship an installable hello world app these days. The MS store takes care of signing, but there are other trade-offs. The entire desktop TTHW (time to installable hello world) story is horrible across the board: - Win: Decent tech foundati…

> No consensus on how to package. Bob wants a .deb,

Bob wants a deb. I give him a deb. Bob is not happy because I compiled the software with an incompatible glibc. I deploy a webapp for Bob. Alice gets to use it too.

Re: Why Microsoft Store Discontinued Support for Office Apps

#33
post #14

the installation story for devs writing windows apps has been dreadful for 3 decades. vs used to help you build setup.exe, which was always a huge chore to use. clickonce was launched to replace all this with hosted manifests and auto-updates and modern features like that, and immediately forgotten about because it was so broken. nobody ever used it. then they brought out WinUI and the windows store, which was so ove…

When I was developing C# winforms applications 15 years ago, I just created a fat signed .exe that was then distributed. Installers and click once stuff was a big turn off for users.

On startup, if not already there, it automagically copied itself to the installation directory, created an autostart directory link and started it from the new location and got killed with a named pipe command. It contained and extracted another .exe that was continuously checking for new versions, downloading them and starting them.

As malwary as it gets but it worked flawlessly!

The windows store nightmare that came after looks dreadful.

Re: Why Microsoft Store Discontinued Support for Office Apps

#34
post #18

Seriously who needs a Store App on a desktop OS? The process should be as simple as visiting app’s website, optionally paying, and installing. No middle man, hence less point of breakage.

Well, the rest of the world (outside of MacOS and Windows) settled on repositories and package managers, with hash verification, versioning, updating/installing/uninstalling with composable commands (that can also be used via GUIs), etc. Use Fedora for half a year and tell me what you prefer.

MacOS and Windows, as far as I understand, do the equivalent of "build for the target OS/arch and include DLLs for all transitive dependencies except the system ones." MacOS puts all that in a disk image while Windows I don't know puts it in one or several directories.

I like the "one consistent system with one dependency tree" policy of Debian et al, but with flatpack, appimage, snap, etc. the "application" part of software might prefer the Windows/MacOS model.

Re: Why Microsoft Store Discontinued Support for Office Apps

#35
If Microsoft won’t eat their own dogfood, why should they expect anyone else to?

This is why no one jumps onboard with new stuff Microsoft wants to push. They don’t stick to anything. A dev can constantly chase after Microsoft’s latest pet projects, or they can simply ignore all of it, knowing it will eventually fall out of fashion and save themselves (and their users) a lot of trouble.

Re: Why Microsoft Store Discontinued Support for Office Apps

#36

Earlier quoted context omitted.

Not to mention the need for a code signing certificate, which even in 2026 is a gigantic and expensive hassle to obtain. You can spend weeks of effort and hundreds of dollars just to ship an installable hello world app these days. The MS store takes care of signing, but there are other trade-offs. The entire desktop TTHW (time to installable hello world) story is horrible across the board: - Win: Decent tech foundati…

> No consensus on how to package. Bob wants a .deb, Bob wants a deb. I give him a deb. Bob is not happy because I compiled the software with an incompatible glibc. I deploy a webapp for Bob. Alice gets to use it too.

Bob wants a deb. I tell him to pound sand and give him a statically linked executable and pray that DNS works. If the software is still relevant in five years, some Debian maintainer will take an ancient version, convert it to use shared libraries, apply a dozen patches and give a .deb to Bob.

Re: Why Microsoft Store Discontinued Support for Office Apps

#37

Earlier quoted context omitted.

Not to mention the need for a code signing certificate, which even in 2026 is a gigantic and expensive hassle to obtain. You can spend weeks of effort and hundreds of dollars just to ship an installable hello world app these days. The MS store takes care of signing, but there are other trade-offs. The entire desktop TTHW (time to installable hello world) story is horrible across the board: - Win: Decent tech foundati…

> No consensus on how to package. Bob wants a .deb, Bob wants a deb. I give him a deb. Bob is not happy because I compiled the software with an incompatible glibc. I deploy a webapp for Bob. Alice gets to use it too.

And then there's Gentoo just smuggly accepting fate and always rebuilding everything rather than trying to force compatibility with libraries.

Re: Why Microsoft Store Discontinued Support for Office Apps

#38

Seriously who needs a Store App on a desktop OS? The process should be as simple as visiting app’s website, optionally paying, and installing. No middle man, hence less point of breakage.

> Seriously who needs a Store App on a desktop OS?

I like the idea. A single place to search for common apps, that also keep them updated. I don't want to download the .exe again and again with ever update. Just do that in the background please.

Though I mostly use WinGet, but it's sadly not as user friendly as apt.

Re: Why Microsoft Store Discontinued Support for Office Apps

#39
post #21
post #14

the installation story for devs writing windows apps has been dreadful for 3 decades. vs used to help you build setup.exe, which was always a huge chore to use. clickonce was launched to replace all this with hosted manifests and auto-updates and modern features like that, and immediately forgotten about because it was so broken. nobody ever used it. then they brought out WinUI and the windows store, which was so ove…

> vs used to help you build setup.exe, which was always a huge chore to use. Was it... REALLY though? Everyone knew how to use the setup wizards.

Next, next, next, next Except choosing installation path.

I'm glad that after windows 10, you can finally install most software as NOT ADMIN via disabling(!) UAC completely :)

Re: Why Microsoft Store Discontinued Support for Office Apps

#40
post #26
post #21

Earlier quoted context omitted.

> vs used to help you build setup.exe, which was always a huge chore to use. Was it... REALLY though? Everyone knew how to use the setup wizards.

i think it's telling that Nullsoft created their own installer for WinAmp and its still 20 years later one of the most sane and popular ways of distributing apps.

I'm still using it to distribute/update production apps and whilst the script language is a bit funky, it works reliably. And the tools work under Linux too, so I can easily integrate a "create setup" step in the CI/CD environment.
Post reply on HN