Live data from Hacker News

Why did Windows 7 log on slower for months if you had a solid color background?

devblogs.microsoft.com

111–120 of 311 posts

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#111
post #84

Earlier quoted context omitted.

I recently acquired a ThinkStation P910 dual CPU Xeon E26xx with 64GB RAM and 1080GTX Quite a capable machine for my uses. Not supported in Windows 11. Maybe with some additional config? Can’t be bothered with something hat might turn out to be fragile and need more maintenance than I can be bothered with. That’s a young man’s gane. Ok, I’m about due to give Linux another tickle anyways. Hmm, which distro… can always…

Just make a black png and use it as the background?

Sure but why should a workaround be required for a feature that should work?

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#112
post #104
post #88

Offtopic I really liked the auto-refreshing "Windows Spotlight" wallpaper on logon screen. I even wrote a script to sync it as my desktop wallpaper. But on my Win10 it stopped working idk why, so I wrote a script to download Bing Image of the Day instead: https://blog.est.im/2025/stdout-03

On KDE Plasma, that's a built in feature.

win7 used to support dynamic wallpapers with an RSS inside some .theme file. It didnt last long. Looks like the hole "theme" idea was abandoned by Microsoft.

Then we have double context menus on Win11. Sigh!

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#114

Earlier quoted context omitted.

The most annoying one is that Windows machines have lost the ability for deep sleep. Laptops that slept perfectly 5 years ago are now left as 24/7 zombies, with the CPU, fans and hard disks running non stop. I'm certain that some idiotic change just like the ones suggested in the article destroyed this perfectly working feature, and nobody is bothered to fix it because it would impact the latest harebrained scheme to…

I'd be willing to bet this is more to do with chipset drivers and associated software than Windows itself.

You may lose that bet. Nobody is writing or pushing driver updates for 10 year old hardware, yet Microsoft's strategy to cripple S3 sleep to compete with mobile OSes is well documented, with the, again, widely documented effect of setting on fire laptops their owners believed were "shut down".

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#115

As someone who prefers a solid color background, I’m always surprised by how often this simple preference leads me into bizarre rabbit holes. Some additional examples beyond the OP: - In the latest macOS, trying to set a custom solid color background just gives you a blinding white screen (see: https://discussions.apple.com/thread/256029958?sortBy=rank ). - GNOME removed all UI controls for setting solid color backgr…

I recently acquired a ThinkStation P910 dual CPU Xeon E26xx with 64GB RAM and 1080GTX Quite a capable machine for my uses. Not supported in Windows 11. Maybe with some additional config? Can’t be bothered with something hat might turn out to be fragile and need more maintenance than I can be bothered with. That’s a young man’s gane. Ok, I’m about due to give Linux another tickle anyways. Hmm, which distro… can always…

I wouldn't go with Pop_OS with that hardware. The Nvidia GPU isn't supported by the new Nvidia driver and because System76 is hard at work writing Cosmic, their repositories are quite outdated. Support for things like Wayland is quite mediocre in the old drivers.

Switching to upstream (Ubuntu) with KDE would probably be more your speed.

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#116
post #32

It's funny to see this: after avoiding the Windows world for the last 25 years, back in the corporate world in the last few, I see this pattern with Microsoft tools all the time. Teams not loading due to security issues, but notifications coming through with full content of messages. Ability to type a handful of words in cloud version of Word (or paste full documents) before security check catches up and requires me…

It's not just MS. I think they might have fixed it now, but my personal favorite was when Google photos would send me a notification with a preview of an AI generated album of my photos they made for me even though the app did not now, nor ever have permissions (on Android) to look at said photos. And it too would then "catch up" and ask permission to see my files and I'd say "no" and then the preview would go away.

Google Keep is a note taking app.

However when you're inside a note (which BTW, can also be converted into checkboxes, aka very simple TODOs), Google Keep, the note taking app from search giant Google, doesn't have search functionality for that specific note.

Besides the many small bugs, sometimes the missing functionality in Google apps is mind boggling.

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#117
post #32

It's funny to see this: after avoiding the Windows world for the last 25 years, back in the corporate world in the last few, I see this pattern with Microsoft tools all the time. Teams not loading due to security issues, but notifications coming through with full content of messages. Ability to type a handful of words in cloud version of Word (or paste full documents) before security check catches up and requires me…

The most annoying one is that Windows machines have lost the ability for deep sleep. Laptops that slept perfectly 5 years ago are now left as 24/7 zombies, with the CPU, fans and hard disks running non stop. I'm certain that some idiotic change just like the ones suggested in the article destroyed this perfectly working feature, and nobody is bothered to fix it because it would impact the latest harebrained scheme to…

I just use hibernate instead. Marginally longer start up time and no more worries. For shorter periods I just leave it on (like when taking the laptop to a meeting room).

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#118
post #77

On my Windows 10 work machine, solid color backgrounds sometimes get reset to black after connecting to it via RDP. I "fixed" it by creating a solid color .png and using it as a background picture ...

rdp client actually has an option to remove the remote desktop's wallpaper

True, but at least in my attempts, that setting only affects picture backgrounds and is ignored when using solid color backgrounds.

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#119

Or why your software should never use arbitrary timeouts. Without the 30s timeout this bug would have been caught and fixed before release.

In one project, we had an ENV var (a few actually) for timeouts of network requests. Most places would raise an exception if they hit this timeout.

In test and CI we had this set to a very low number. In acceptance (manual testing, smoke testing) to a very high number.

This was useful because it showed three things:

- Network- and services- configuration bugs, would immediately give a crash and thus failing test. E.g. firewalls, wrong hosts, broken URIs etc.

- Slow services would cause flickering tests. Almost always a sign that some service/configuration/component had performance problems or was misconfigured itself. Quick fix would be to increase the timeout, but re-thinking the service - e.g. replace with a mock if we couldn't control it, or fixing its performance issues, the proper- and often not that hard- fix. Or re-thinking the use of the service, e.g. by pushing it to async or a job queue or such another fix.

- Stakeholders going through the smoke-test and acceptance test would inevitably report "it's really slow" showing the same issues as above but in a different context and with "real" services like some external PSP, or SMTP.

It was really a very small change: just some wrappers around http-calls and other network calls, in which this config was used, next to a hard rule to never use "native" clients/libs in the code but always our abstraction. This then turned out to offer so much more benefits than just this timeout: error reporting, debugging, decoupling.

It wasn't javascript (Ruby, some Python, some Typescript) but in JS it would be as easy as `function fooFetch(resource, options) { return fetch(resource, options) }` from day one, then slowly extended and improved with said logging, reporting, defaults etc.

I've since always introduced such "anti-corruption" layers (facades, proxy, ports/adapters) very early on, because once you have "requests.get("http://example.com/foo/bar")' all throughout your python code, there's no way to ever migrate away from "requests" if (when!) it gets deprecated, or to add said timeout throughout the code. It's really a tiny task to add my own file/module that simply imports "requests" and then calls it on day one, and then use that instead.

Re: Why did Windows 7 log on slower for months if you had a solid color background?

#120
post #103
post #32

It's funny to see this: after avoiding the Windows world for the last 25 years, back in the corporate world in the last few, I see this pattern with Microsoft tools all the time. Teams not loading due to security issues, but notifications coming through with full content of messages. Ability to type a handful of words in cloud version of Word (or paste full documents) before security check catches up and requires me…

I like to joke that Microsoft stuff is always 80%. Works very well for the obvious use cases, but then you are bound to run into weird issues as soon as you run into some edge case they haven't covered. Makes me think it must have something to do with their corporate culture and how they work, since their developers, to my knowledge, never had a reputation for being weak. Maybe it's just because they have such a giga…

> I like to joke that Microsoft stuff is always 80%.

Only when they "release" it. And then they start again from 10%. /s

Post reply on HN