Reset Windows Password using Utilman.exe Trick

TL;DR

Run these commands from a command prompt in Windows Recovery, while in the system drive:

ren \Windows\System32\utilman.exe utilman.bak
copy \Windows\System32\cmd.exe utilman.exe

Restart and click the Accessibility icon on the welcome screen. Then reset the password from the command prompt that opens:

net user Username NewPassword

Continue reading

Fix Slow Start Menu Search in Windows 11

If the Windows 11 Start Menu is really slow to display search results, try resetting the Client WebExperience and Client CBS apps. Run the following from an elevated Powershell prompt:

Get-AppxPackage -AllUsers *MicrosoftWindows.Client.WebExperience* | Reset-AppxPackage 
Get-AppxPackage *MicrosoftWindows.Client.WebExperience* | Reset-AppxPackage
Get-AppxPackage *MicrosoftWindows.Client.CBS* | Reset-AppxPackage

Continue reading