Earlier quoted context omitted.
I just fired up a Win10 machine for the first time in some while in order to run specific software. Good gawd. It was finally useful about 4 hours later after all the updates and tomfoolery. Never again.
Well, I am not sure it'd be painless to boot up a macOS machine or an Ubuntu desktop that hadn't been getting updates for months - probably not 4hr, but there'd be some annoyance.
Windows 11: Just say no
331–340 of 539 posts
Re: Windows 11: Just say no
#332Am I alone in assuming they'll just do the Windows 10 unwanted upgrade, again, when 11 adoption rate isn't where they want it to be? Choice doesn't matter to these mega corps, so long as we use their stores and view their ads. Thank god for Gnu and Linux!
That's the most probable scenario and I wouldn't be surprised that in the end they'll lower the requirements for 11 even more. Back then, the marketing tactic of "hurry up, limited-time offer only" was in the use for this free Windows 10 upgrade but people were still able to get the upgrade after the deadline; then, some used the obscure way of getting the upgrade by special offer for people with accessibility issues…
On that note, it was removed, so now the only way I know that works is to do an in-place upgrade via the Windows 10 installation media ('upgrade this pc now') then sign in with a Microsoft account to get your license attached to the MSA, then you can do a full reinstall and keep the license.
Re: Windows 11: Just say no
#333Tldr 11 rocks, it's built for business and has mad benefits for gamers.
Re: Windows 11: Just say no
#334What if they lock the next version of DirectX behind Windows 11?
Then people will probably spend time trying to get the Wine/Proton implementation of that version of DirectX running on Windows 10. Windows 11 is going over like a lead balloon in the enthusiast gaming community, so the will is there.
Re: Windows 11: Just say no
#335Earlier quoted context omitted.
Wouldn't surprise me if you reboot your computer one day and surprise! It's windows 11 now! Remember, they did the same thing with Windows 10 a couple of times.
Welp, time to start dropping every packet from any Windows Update-related IP block in my router...
Re: Windows 11: Just say no
#336Earlier quoted context omitted.
Yeah you're not alone there, the stupid idea that windows now needs to be fully tablet capable without a keyboard to the detriment of everyone else using it normally. Literally making the interface less informative and adding clicks, waiting and gestures to achieve actions that should've been a single point and click. I call it the "BIG BATAN" ideology, as everything needs to be a clean oversized button without any e…
This is especially ridiculous when seeing how few tablets are sold by Microsoft, despite them try harding for a decacde or so.
I'd actually like a modern pen-enabled PC, but they seem to be getting worse at software (and batteries!) over time. And when I'm at a desk with a keyboard, mouse, and large monitor, nothing else from MS beats the classic 2K/XP (7's okay too) UI.
Re: Windows 11: Just say no
#337If you're a windows user you don't really have a choice if you care about ongoing support. This really should be "Windows: Just say no".
If you want to play by the rules on home edition you still have at least through the end of 2025 to say no and remain supported.
Re: Windows 11: Just say no
#338Earlier quoted context omitted.
At a minimum, for a Win32 application to work correctly with HiDPI it needs to tell the OS it is DPI aware. This is done by marking the application DPI aware using the settings found in the manifest file. The manifest file is then embedded into the resource section of the application, which then lets the OS know the application will be handling it's own DPI. So the reason many of those 'legacy apps' don't work with H…
How do you patch these executables? I know 7zip can open .exe but there must be a better way.
https://docs.microsoft.com/en-us/previous-versions/windows/d...
Marking the app DPI aware just stops Windows doing any application scaling as it leaves that scaling up to the application.
But the real issue is most legacy apps were written before DPI scaling was an issue so they don't have this built in scaling.
To fix this Windows will do a 'one size fits all' scaling on their behalf.
It is this default Windows scaling that makes these legacy apps look so bad at higher DPI settings.
Re: Windows 11: Just say no
#339For me, the lack of a "Never combine" option for the taskbar has made win11 unusable for me. I have already reverted back to 10 and will not be updating again till this option is made available again. Its a huge productivity hit for people who are used to multitaking between dozens of open windows
Re: Windows 11: Just say no
#340Earlier quoted context omitted.
At a minimum, for a Win32 application to work correctly with HiDPI it needs to tell the OS it is DPI aware. This is done by marking the application DPI aware using the settings found in the manifest file. The manifest file is then embedded into the resource section of the application, which then lets the OS know the application will be handling it's own DPI. So the reason many of those 'legacy apps' don't work with H…
So you enable it by editing the manifest file and embedding the manifest file, but with legacy applications the HiDPI scaling might not be calculated correctly, or something assumes Pixels or DIP incorrectly. It might be something in a custom control in MFC, or a library or DLL where the source is long gone and no one can update, or even worst something doing something via COM and VB6.
> something assumes Pixels or DIP incorrectly.
These are exactly the types of problems legacy applications run into.
They will contain hard coded assumption in their code and many of those will be 'pixel based' assumptions.