Last active
November 7, 2019 23:51
-
-
Save pmolchanov/12ecf59d3aee3d9706791de7ac9324de to your computer and use it in GitHub Desktop.
Developer settings for Windows Explorer
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
&{ | |
# Configure Windows Explorer Options | |
$key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced' | |
Set-ItemProperty $key Hidden 1 | |
Set-ItemProperty $key HideFileExt 0 | |
Set-ItemProperty $key ShowSuperHidden 1 | |
Set-ItemProperty $key AlwaysShowMenus 1 | |
Set-ItemProperty $key AutoCheckSelect 0 | |
Stop-Process -ProcessName explorer | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment