Skip to content

Instantly share code, notes, and snippets.

@robertbrooker
robertbrooker / Set-WindowsExplorerShowHiddenFile.ps1
Last active March 22, 2020 18:04
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