Last active
February 23, 2026 12:04
-
-
Save Git-I985/5e96c8188f8df22b62cf527ca4d35b70 to your computer and use it in GitHub Desktop.
windows cheatsheet
This file contains hidden or 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
| # open env vars editor without clicking | |
| Start-Process rundll32.exe "sysdm.cpl,EditEnvironmentVariables" -Verb RunAs | |
| # open registry editor | |
| regedit.exe | |
| # Open registry editor on specific path | |
| # Install https://learn.microsoft.com/ru-ru/sysinternals/downloads/regjump | |
| # + enable advanced features for sudo (available on latest win 11 versions) | |
| sudo regjump HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\DontPrettyPath | |
| # Tasks scheduler | |
| taskschd.msc | |
| # Fast copy (faster than explorer way) | |
| robocopy source dest /E /MT:32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment