Created
January 13, 2012 02:33
-
-
Save sshaw/1604295 to your computer and use it in GitHub Desktop.
Custom Registry Settings
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
"HideFileExt"=dword:00000000 | |
; Show hidden and system files | |
"Hidden"=dword:00000001 | |
"ShowSuperHidden"=dword:00000001 | |
"SuperHidden"=dword:00000001 | |
; In Explorer, do not open folders in new window | |
"SeparateProcess"=dword:00000000 | |
; Win 7, use checkboxes to select multiple files, no need for Crtl+click. | |
"AutoCheckSelect"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor] | |
"CompletionChar"=dword:00000009 | |
[HKEY_CURRENT_USER\Console] | |
"InsertMode"=dword:00000001 | |
"QuickEdit"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\Telnet] | |
"BSASDEL"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment