How to make show hidden files on a virus infected USB drive
Here is the common line which you have to run in cmd to be visible hidden due to virus infection to your USB drive.
with driver letter e
attrib -h -r -s /s /d e:\*.*
without drive letter
attrib -s -h /s /d *.*
with driver letter e
attrib -h -r -s /s /d e:\*.*
without drive letter
attrib -s -h /s /d *.*
Comments
Post a Comment