easy hide or unhide folder

Status
Not open for further replies.

gsoul2soul

WOW... are you?
Anyways i can do that?

You know sometimes you need to Unhide the folders... and sometimes you need to Hide them

The usual way is to go to "tools" than select "folder properties" and then bla bla bla

But is there not a "shortcut method" or maybe a small application or "reg-file" with which i can just click on it and the files will "hide and unhide".. without the need of any clicks !!!

Thanks... i hope my query made sense
Mike
 

Vishal Gupta

Microsoft MVP
Its very easy. ;)

Code to disable "Show hidden files/folders" option:

Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Hidden"=dword:00000002

Code to enable "Show hidden files/folders" option:

Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Hidden"=dword:00000001
 
Status
Not open for further replies.
Top Bottom