How to delete virus from a removable storage device

Closed
tomsuglo Posts 1 Registration date Thursday July 25, 2013 Status Member Last seen August 16, 2013 - Aug 16, 2013 at 01:43 PM
carminabigue Posts 620 Registration date Tuesday March 19, 2013 Status Member Last seen June 10, 2015 - Aug 20, 2013 at 11:35 PM
Hi

How can i delete a virus from a removable storage device without an antivirus?

thanks
Related:

1 response

carminabigue Posts 620 Registration date Tuesday March 19, 2013 Status Member Last seen June 10, 2015 125
Aug 20, 2013 at 11:35 PM
Here is the ATTRIB utility's command syntax

ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H] filespec /S

+ Sets an attribute.
- Clears an attribute.
R Read-only file attribute.
A Archive file attribute.
S System file attribute.
H Hidden file attribute.
/S Processes files in all directories in the specified path.

For example if you want to clear the Archive attribute bit of all
the files in a directory, execute the following command line.

ATTRIB -A c:\mydir\*
0