Boot PC to Bios on UEFI Bios PC's
Start Command Prompt as Administrator
C:\Windows\System32\shutdown /r /f /fw /t 0
(zero)
Breakdown: /r restart
/f force (do NOT wait for apps to close)
/fw firmware
/t time to wait = zero
Master multitasking with Virtual Desktops:
Press Win + Ctrl + D to create a new virtual desktop
Press Win + Ctrl + Left/Right Arrow to switch between desktops
Press Win + Ctrl + F4 to close the current desktop
Access multiple copied items with Clipboard History:
Press Win + V to open Clipboard History
Click an item to paste it anywhere
Enable Clipboard Sync in Settings → System → Clipboard to sync across devices
Windows Utilities - (Win)+r Paste text
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -Command "Start-Process powershell.exe -verb runas -ArgumentList 'irm https://christitus.com/win | iex'
To enable God Mode in Windows 10 and 11, follow these steps:
Right-click on an empty space on the Windows desktop.
Select “New” and then “Folder”.
Name the folder as follows: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
Press Enter to confirm the name.
Double-click on the icon to open the God Mode folder.
How To Disable Microsoft Spyware called "Recall"
Check to see if you have Windows 11 version 24H2
If you do then open a command prompt as Administrator
Check Status:
Dism /Online /Get-Featureinfo /Featurename:Recall
Disable:
Dism /Online /Disable-Feature /Featurename:Recall
Enable:
Dism /Online /Enable-Feature /Featurename:Recall
Maximize your PC’s speed by enabling the Ultimate Performance power plan:
Open Command Prompt (Admin)
Type: powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
Go to Control Panel → Power Options and select Ultimate Performance
Update Winget (Windows Package Manager)
From Command prompt (as Administrator) to show available upgrades
winget upgrade
Then perform the actuall upgrades
winget upgrade --all
There is also a graphical option at wingetui.com
See a timeline of system crashes and issues with Reliability Monitor:
From a Command prompt (Press Win + R)
Type perfmon /rel, and press Enter
View the stability chart and check for errors
Click on any event to see more details and find potential fixes
System File Checker
The SFC tool is accessed through the command prompt(administrator), and checks the integrity of all protected Windows system files.
How it works:
The /scannow command instructs SFC to scan for and replace any incorrect, corrupted, changed, or damaged versions of protected system files with a cached copy.
Where to find the cached copy:
The cached copy is located in a compressed folder at %WinDir%System32dllcache.
How to run it:
Open Command Prompt as an administrator (right-click Command Prompt and select "Run as administrator").
Type sfc /scannow and press Enter.
Wait for the scan to complete (this may take some time).
What to expect:
You'll see a message indicating whether any integrity violations were found and if they were successfully repaired.
Important Note:
Do not close the Command Prompt window until the verification is 100% complete.