Skip to main content

CREATE AN ANTIVIRUS USING COMMAND PROMPT

In this article we are going to create an antivirus using simply a notepad. It will delete all simple micro viruses in your system.



Type the following code into Notepad:

@ echo off
echo off turn off the active virus
taskkill / F / IM virus1.exe / IM virus2.exe
echo Deleting all of viruses based on size
for / RC: \%% a in (*. exe) do if%% ~ za 157,184 equ del / A: HSRA "%% a"
echo deleting hidden virus
echo for drive c and subfolders
for / R C: \%% a in (*. doc.exe) do del "%% a"
echo for drive d an d subfolders
for / R D: \%% a in (*. doc.exe) do del "%% a"
echo Unhide Documentcd / d c: \
echo for drive C and subfolders
*. doc attribHSA
/ S
cd / d d: \
echo for drive D an d subfolders
*. doc attribHSA
/ S
exit







Here, text in green is alert message and text in red are the program that your system will search for those and delete these files.

Now, Save the file with .bat extension , For example antivirus.bat. then go to command prompt and run the Notepad file.




NOTE: Text in red are the program that your system will search for those and delete these files so don't name it as the file name which is already present in your system otherwise your file will be deleted.

Comments

Popular posts from this blog

5 Amazing Tech Facts You Definitely Haven't Heard About

Qwerty Keyboard Was Designed To Slow You  Down        This keyboard design is for latin-script alphabets. The name QWERTY (pronounced as kwirti) came from the first 6 letter in order of kays from top left letter row.        When the type writer was invented, its keys was arranged like piano keys and they were in better manner to type easily and fast for everyone. The typer used to type faster than we simply write by hands. so the typing speed was very high and because each type bar hits the same place on the device causes the type bar jams together. so in response to this Christopher Lantham Sholes invented the QWERTY Keyboard layout in early 1870s not to slow down the typer.... (yes you are right..).. He invented the this QWERTY layout to solve this jam problem of type bars by placing the most commonly used characters forever away from each other.        It was the first ty...

What is Surface Web, Deep Web and Dark Web

         Ladies and Gentlemen, in daily life we are surfing internet for various purpose. Nowadays Internet has become an integral of everyone’s life. But do you know the internet you are using in daily life is the smallest part of the internet and the another largest part of the internet that you might be not using. In this article I’m gonna clear all the things about internet so this article till the end.          The largest part of internet which doesn’t appear on google. And that can be accessed by those who have the direct link or authentications of that part to access. In fact internet is divided into three parts. In fact Internet is divided into three parts. Surface Web Deep Web Dark Web SURFACE WEB:          Surface web is the piece of www(world wide web) which is easily available for all common i...