How to delete virus from a removable storage device
Closed
tomsuglo
carminabigue
- Posts
- 1
- Registration date
- Thursday July 25, 2013
- Status
- Member
- Last seen
- August 16, 2013
carminabigue
- Posts
- 619
- Registration date
- Tuesday March 19, 2013
- Status
- Member
- Last seen
- June 10, 2015
Related:
- Https//www.mieword.com/forum leastread
- Can't delete virus file - Guide
- How can i delete virus from my computer without antivirus? ✓ - Forum - Viruses/Security
- How to make external hard drive show as removable storage - Forum - Hard Drive/SSD
- Recover deleted photos: Android, Android internal storage - Guide
- Secure digital storage device remove write protection - Guide
1 reply
carminabigue
Aug 20, 2013 at 11:35 PM
- Posts
- 619
- Registration date
- Tuesday March 19, 2013
- Status
- Member
- Last seen
- June 10, 2015
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\*
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\*