Skip to content

Instantly share code, notes, and snippets.

@pmolchanov
Last active November 7, 2019 23:51
Show Gist options
  • Save pmolchanov/12ecf59d3aee3d9706791de7ac9324de to your computer and use it in GitHub Desktop.
Save pmolchanov/12ecf59d3aee3d9706791de7ac9324de to your computer and use it in GitHub Desktop.
Developer settings for Windows Explorer
&{
# 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