Last active
September 30, 2024 01:06
-
-
Save alexishida/e5d14bb5529105d708e79e570ddfcd2e to your computer and use it in GitHub Desktop.
useful windows commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable Teredo | |
netsh interface teredo set state disabled | |
## 3 . You may need to reboot, depending on your version of Windows. | |
## If you wish to re-enable Teredo at some point you can issue the command: | |
netsh interface teredo set state type=default | |
# Reset network cache | |
ipconfig /flushdns | |
netsh winsock reset | |
netsh int ip reset | |
Restore the old Context Menu in Windows 11 | |
# Right-click the Start button and choose Windows Terminal. | |
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve | |
# Restore Modern Context menus in Windows 11 | |
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment