Bypass user account setup on Win 11
When you’re at the first setup screen:Press Shift + F10 to open a command window

Then run C:\Windows\System32\oobe\BypassNRO

System will reboot and allow you to choose “I don’t have internet” to setup a local user account

New if the above doesn’t work.

Hit Shift-F10 to open a command window

Then type
start ms-cxh:localonly


Hide Windows update
https://download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab


CleanupWinSXS folder


FixWin 10 – Ver 1803 Can’t Find Network Computer


ReinstallWin 10 without losing apps or data


HowTo Stop “Unsupported Hardware” Message In Windows 7 and 8.1


Boot to desktop skip password

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device

On the right-side pane, double click DevicePasswordLessBuildVersion DWORD
Change the decimal value to 0
Close Registry Editor
Restart your PC

Then ‘run’ netplwiz and uncheck require password


Use Victoria for Hard Drive Fixes

How to Test and Repair a Hard Disk with a Free Tool, Victoria


Windows 10 2004 – Lost Password Problem – Workaround


Find Windows 10 & 11 WIFI Passwords:
netsh wlan show profiles
netsh wlan show profile name=[ssid] key=clear


Fix Corrupted User Profiles


Fix High Disk Usage


Bypass Firefox Min Security Level
Type about:config
Search for “security.tls.version.min” and change to 1


HP Printer only prints B&W

Remove printer and then add back by IP address.


To Turn BitLocker Off Without Activation
In case where you want to get rid of BitLocker encrpytion without activating it first use:manage-bde c: -off


Migrate EMClient to Thunderbird

Export EMClient to EML files (will create folder structure). Use TB addon “importExportTools” to imports folders & EML files into a import subfolder of local folders. Move imported folders as needed. Also mark imported folders “as read”.


Windows Live Mail – an unknown error occurred when deleting or moving a message

Find the offending message and click & drag it to the deleted items folder.  Then empty the deleted items folder by right clicking on it.


RUN DISM Offline

From an admin command or PowerShell window from a live USB:

X:>DISM /Image:c:\ /Cleanup-Image /Restorehealth /scratchdir:c:\windows\temp /source:esd:E:\sources\install.esd:1 /LimitAccess


Use DiskPart (diskpart > list volume) to check for the correct drive letter of the Windows install you want to repair (C: in this case), and E: should be swapped for the drive letter of the Windows USB installer you’re booted from. Using LimitAccess stops Windows from trying to contact Windows Update, which will error out if you’re offline.

This is different from the way DISM is used from a running Windows installation, where you would use the /Online switch so the tool fixes the compressed Windows image files, while checking Windows Update for the replacement files.

Once DISM finishes, run SFC /scannow at least twice, then reboot. From a live USB the syntax is slightly different: sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows while using the same drive letters as when we ran DISM a minute ago.