Windows keeps auto-in-correcting!

Since a little while I have been making a lot more typos!
I was starting to doubt myself, but it turned out to be something I am sure I had turned off: autocorrect! Don’t know what update it was, but MickeySoft must have been been doing stuff in my settings again, without asking me first.

How to stop this?
Go to Windows Settings, Time & Language, Typing and turn those options off (again!).

That’s all folks!
Have a nice day…

Install Windows 11 Without a Microsoft Account

Thank you ‘Tom’ for the article on How To: “Maintain only a local account on your Windows 11 PC“.

By default, you must log in with a Microsoft account in order to install Windows 11 and go through the box (OOBE) setup process that triggers either as part of installation or the first time you turn on a new Windows PC. It seems like Microsoft really wants you to log in to Windows 11 using its account system, both so it can track you, …and so you can get benefits such as synchronizing your wallpaper and preferences across different computers.

However, there are many reasons why you would want to install Windows 11 using a local account only. Maybe you want to install Windows 11 with a local (non-Microsoft) account because you are installing the OS on a child’s PC or on a PC that you plan to sell, give to a friend or donate to a charity (without giving other people access to personal data). Or perhaps you just like your privacy and don’t want to create an account with Microsoft in the first place.

Whatever your reason for doing so, it’s easy to install or set up Windows 11 without using a Microsoft account. Below, we’ll show you the method: which involves issuing some commands during the install / OOBE process. We’ve tested the method on the latest major Windows 11 version, 24H2, and they work.

Continue reading Install Windows 11 Without a Microsoft Account

KB5043145 update breaks USB

DO NOT INSTALL THAT UPDATE!
(updated 12/10/2024 see at bottom of article)

At least on two of my computers, it completely disabled the USB ports, leaving me without mouse, keyboard, bluetooth and any way of giving any input to the computer to do anything.
Luckily I had Google Remote Desktop installed previously so I could take over the screen and fix the issue.

Not everyone, but others do have the same issue, see:
https://techcommunity.microsoft.com/t5/windows-insider-program/major-problem-with-version-23h2-for-x64-based-systems-kb5043145/m-p/4256541
I also posted my issue here:
https://www.elevenforum.com/t/kb5043145-windows-11-cumulative-update-preview-build-22621-4249-22h2-and-22631-4249-23h2-sept-26.28865/

So what happened:

Continue reading KB5043145 update breaks USB

Access Windows Share without a password

Older laptop, simple user to logon without any password; Simply click to login and use the computer.

Now, if you want to access a share on that computer, using that same user, and gave the correct rights to be able to access it, it will not work… This was my solution from 2011, which still worked today!
Start gpedit.msc and find and disable this setting:

Happy sharing!
Have a nice day…

Robocopy Quirks

Old-fashioned, but I still use batchfiles to automate tasks on my computer. One of them is a backup mirroring script, using the robocopy command. Recently I wanted to add a folder from C:\Program Files\appname\ to the backup, so I added the following line to the backup-script:

Robocopy "C:\Program Files\appname\" "\\SERVER\Backup\LAPTOP\appname\" /MIR /XJD /R:8 /W:15 /MT:32 /BYTES /V /NP /LOG:log-LAPTOP-appname.log

However this did not work, what’s the problem? Who knows… but the solution is to add a space before the closing end-quote. So just use:

Robocopy "C:\Program Files\appname\ " "\\SERVER\Backup\LAPTOP\appname\ " /MIR /XJD /R:8 /W:15 /MT:32 /BYTES /V /NP /LOG:log-LAPTOP-appname.log

On another note, check this, and use (also note the * and not *.* !!!):

"C:\Program Files\7-Zip\7z.exe" u -r -up0q3r2x2y2z1w2 -mx=0 -password Z:\somefile.zip "C:\Somefolder\*"

That’s all folks!
Have a nice day…