Link to home
Start Free TrialLog in
Avatar of Mekouar
Mekouar

asked on

Folders Have become hidden

One of my network drives got infected with a virus and after cleaning using
Symantec, all of the folders became invisible, so in order to see them i have to modify the folder view options to show hidden files and folders. I don't want to do that for everyone just like I don't want to have to rename and copy each one of these folders as they all have different permissions. Is there an easier way?
ASKER CERTIFIED SOLUTION
Avatar of pjam
pjam
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Giladn
so you say you do have permissions to change but it's too much work to unhide all folders?

how about you open a command prompt and do it with attrib?

1. go to "start" -->"run"  type "command"
2. type destinationdrive:  (e.g c:)
3. if you want to unhide all files and folders on this drive type:
    attrib -h -s *.*/s
4. if you want just one folder use  attrib -h -s destinationdrive\destinationfolder/s
    e.g  attrib -h -s c:\testfolder\hiddenfolder/s

Hope this helps,

G