How to Hide/Unhide folder with all sub-folders and files?

Unhide

The command: attrib -s -h "full path of folder\*" /s /d

First run command prompt as Administrator then paste above code (Replace full path of folder with realpath of the folder for example: c:\folder1\)

Hide

Same as above only change -h with +h


Unhide

The command: attrib -s +h "full path of folder\*" /s /d



Leave a Reply