4

I got an external flash drive, plug into my school's lab for use, and came back noticing all my folders have gone missing! The space shown taken is still the same

Then I played around with all Folder Options, unticked "Hide Protected Operating System files" option and voilĂ ! All my folders are there! I suspect some virus from the lab is messing with this, but is there a way I can revert this?

phuclv
  • 30,396
  • 15
  • 136
  • 260
Jack-V
  • 85

2 Answers2

4

In command prompt, type this:

attrib  -H -S F:\\*.* /S /D /L

Where F stands for the drive name. Change it base on the drive name you want to unhide operating system files.

P.S.: All caps; it won't work if you use the lower case.

cloud89
  • 41
3

That's because the folder is being assigned with the system attribute

Just open command promt with admin priviledge and run

attrib -s folder /D
phuclv
  • 30,396
  • 15
  • 136
  • 260