Skip to content

Instantly share code, notes, and snippets.

@robertbrooker
Last active March 22, 2020 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertbrooker/f449671790f3fcf220a7dc61ebbf76d7 to your computer and use it in GitHub Desktop.
Save robertbrooker/f449671790f3fcf220a7dc61ebbf76d7 to your computer and use it in GitHub Desktop.
Script to turn off file extension hiding
$key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
Set-ItemProperty $key Hidden 1
Set-ItemProperty $key HideFileExt 0
Set-ItemProperty $key ShowSuperHidden 1
Stop-Process -processname explorer
@robertbrooker
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment