Created
March 9, 2012 22:31
-
-
Save rpavlik/2009065 to your computer and use it in GitHub Desktop.
Registry entries to make Windows 7 more developer-friendly
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
; Show hidden files | |
"Hidden"=dword:00000001 | |
; Don't hide file extensions for known file types | |
"HideFileExt"=dword:00000000 | |
; Expand Win7 navigation pane automatically to current folder | |
"NavPaneExpandToCurrentFolder"=dword:00000001 | |
; Show "Downloads" folder in the Win7 Start Menu | |
"Start_ShowDownloads"=dword:00000001 | |
; Show "Run..." in the Win7 Start Menu | |
"Start_ShowRun"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\Command Processor] | |
; "tab" to complete a command or path in cmd | |
"CompletionChar"=dword:00000009 | |
"PathCompletionChar"=dword:00000009 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment