Sunday 14 July 2013

Hide any folder


Sometime we want to hide our personal folder to other. Even we want it is not be searched. Let us do it.
Open run command or from keyboard press "Window key+R". and then type "cmd" for opening the command prompt.
Type
attrib +s +h  D:\Data ( press Enter)

attrib is attribute command while +s consider as system file/folder and +h is hide it, While D:\Date is path of folder it mean hide "Data" folder from D: drive. When you'll search it by name but I'll not displayed.

Now let us restore it
Type
attrib -s -h D:\Data ( press Enter)

It is now appeared.

0 comments :

Post a Comment