Windows 11 Tricks
Get the Old Context Menu Back
In Windows 11, you normally need to do an extra click of "Show more options" or use the keyboard shortcut Shift+F10 to see the full legacy context menu. Here is how to fix it!
Solution
- Open the Registry Editor (REGEDIT).
- Go to:
Computer\HKEY_CURRENT_USER\SOFTWARE\CLASSES\CLSID\ - Right-click an empty area in the right-hand section and go to New > Key.
- Name the key exactly:
{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}. - Right-click on this newly created key and go to New > Key.
- Name it:
InprocServer32. - Double-click the (Default) value under
InprocServer32to open it. - Don't enter any value, just click OK to close it.
- This will change the data from "(value not set)" to an (empty string).
- Exit Regedit and reboot your computer.
Thanks to Brian Burgess
Overview of WiFi Passwords in Windows
Do you want to quickly see all saved WiFi passwords?
Run this command in Administrator PowerShell:
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)}