unhide hidden files in Windows Explorer


/ Published in: Windows Registry
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. ;save this as "unhide.reg"
  2. ;show hidden:
  3. Windows Registry Editor Version 5.00
  4.  
  5. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  6. "Hidden"=dword:00000001
  7. "HideFileExt"=dword:00000000
  8. "SuperHidden"=dword:00000001
  9. "ShowSuperHidden"=dword:00000001
  10.  
  11. ;save this as "hide.reg"
  12. ;hide hidden:
  13. Windows Registry Editor Version 5.00
  14.  
  15. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
  16. "Hidden"=dword:00000002
  17. "HideFileExt"=dword:00000001
  18. "SuperHidden"=dword:00000000
  19. "ShowSuperHidden"=dword:00000000

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.