Skip to main content

how to remove the hidden virus in your pendrive?

Actually this viruses are hidden and can’t be seen even after you enable show hidden folders. Following simple dos command will change the attributes of these files ,there after you can remove it by pressing delete key.

Step1.:Type cmd in Run

  Step2.: Switch to the drive on which
pen drive is connected

(like C:> h: enter)

Step3.: type exactly as

attrib -s -h*.* /s /d and hit enter

(don’t forget spaces).

Now you can see hidden virus files

and you can delete them.

Comments

Popular posts from this blog

What is SQL ?

SQL (Structured Query Language) is a standardized programming language used for managing relational databases and performing various operations on the data in them. Initially created in the 1970s, SQL is regularly used by database administrators, as well as by developers writing data integration scripts and data analysts looking to set up and run analytical queries. The uses of SQL include modifying database table and index structures; adding, updating and deleting rows of data; and retrieving subsets of information from within a database for transaction processing and analytics applications.  Queries and other SQL operations take the form of commands written as statements -- commonly used SQL statements include select, add, insert, update, delete, create, alter and truncate. _________________________