/ Published in: Windows Registry
These registry settings show four different settings which do the following: "Hidden"=dword:00000001 - show hidden files "ShowSuperHidden"=dword:00000001 - show hidden system files "SuperHidden"=dword:00000001 - show hidden directories in the explorer's tree view "HideFileExt"=dword:00000000 - show file extension on any files
Expand |
Embed | Plain Text
;save this as "unhide.reg" ;show hidden: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Hidden"=dword:00000001 "HideFileExt"=dword:00000000 "SuperHidden"=dword:00000001 "ShowSuperHidden"=dword:00000001 ;save this as "hide.reg" ;hide hidden: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "Hidden"=dword:00000002 "HideFileExt"=dword:00000001 "SuperHidden"=dword:00000000 "ShowSuperHidden"=dword:00000000
You need to login to post a comment.
