Earlier quoted context omitted.
I discovered a bug in a microsoft software installer where it would hang unless you moved the mouse over the progress bar. Discovered this when trying to use a java api to make silent installers for programs that didn't have them. The solution was to use the java api to move the mouse back and forth over the progress bar.
Currently use AutoIT and InnoSetup for installation wrappers those that don't have installers with silent support or have the ability to automate the settings. This is where BSD and Linux shine compared to Windows! Scripting and automation is built-in with the ladders and greatly lacking in the former.
Windows 7 boots slower if you set a solid background color
91–100 of 121 posts
Re: Windows 7 boots slower if you set a solid background color
#92Earlier quoted context omitted.
That never happened.
I second the sibling comment that it was absolutely possible to have animated icons on Windows 3.1(1). I was only 11 or 12 at the time, but I distinctly remember the two Windows 3.1(1) machines in our school computer center having animated icons on their desktop in '93 or '94, but I know I couldn't do the same on my own PC at home, so they must have had some extra software installed to make that possible. My assumpti…
Re: Windows 7 boots slower if you set a solid background color
#93Earlier quoted context omitted.
The opposite happens in CMD on Windows, at least in the past. Applications that wrote a lot to the logscreen were slowed down by it. While writing to stdout is buffered, it seems that the rendering itself runs in the same thread as the application. Making a selection freezes the terminal and this stops the rendering, allowing the application to run much faster. Removing the selection (by pressing escape) rerendered t…
Back in the day making a selection would actually freeze the process in some cases.
Re: Windows 7 boots slower if you set a solid background color
#94Hands up all the people that used computers before desktop pictures were a thing and still set the desktop to a solid colour because “it will draw faster and use less memory.”
I just use solid black cause it's less distracting than anything else for me.
Re: Windows 7 boots slower if you set a solid background color
#95Earlier quoted context omitted.
I just use solid black cause it's less distracting than anything else for me.
I use Middle Gray at work, and everyone thinks I'm weird for it https://en.wikipedia.org/wiki/Middle_gray
Re: Windows 7 boots slower if you set a solid background color
#96Re: Windows 7 boots slower if you set a solid background color
#97This reminds me of how in Windows 95, installers would complete quicker if you constantly moved the mouse, but would take longer if it was still.
Re: Windows 7 boots slower if you set a solid background color
#98Earlier quoted context omitted.
Windows before some version (maybe before XP?) only supported BMP wallpapers. BMP is uncompressed, a 1024x768 24-bit BMP is 2.25MB. That could be 7% of the 32MB system RAM and if the image got paged out - you were looking at it being redrawn line by line...yeah, I'm not doing that :)
This was a problem even for systems with more RAM, because that background bitmap was always a tempting target for the memory manager looking to page out long idle memory. It was exacerbated by the aggressive disk cache, which could cause even programs that didn't allocate much memory directly to swap out the background by doing enough regular buffered I/O.
Re: Windows 7 boots slower if you set a solid background color
#99Earlier quoted context omitted.
Windows 98 introduced Active Desktop, allowing you to use JPG wallpapers. In my experience, enabling Active Desktop would make everything slower, so I always opted to take the RAM hit on BMP wallpapers. It was even better if I could save the BMP in 8-bit and still have it look good.
Yep. It's because Active Desktop was essentially running an instance of Internet Explorer rendering to your desktop, of course it's slow and memory intensive. Disabling Active Desktop and the fancy views on the left pane of Windows Explorer made Windows 98 change from quite slow to super responsive.
Re: Windows 7 boots slower if you set a solid background color
#100Over on the Linux side, I installed Vanilla OS recently and it has a Samba service (nmbd.service) as a bootup dependency, which waits for a non-loopback IPv4 interface to be available. So if you're on a laptop which is not connected to WiFi, it will just hang for 90 seconds on the bootup screen before systemd decides that service has failed to start and moves on
- configure SMB with a shorter timeout at boot
- configure your Samba share to mount with automount. (See [1] for inspiration)
[1] https://forum.manjaro.org/t/root-tip-how-to-systemd-mount-un...