Saturday

How to Create Your Own Antivirus Using Notepad



Nobody want virus in the computer, I am going to tell you a trick in this article how to create your own antivirus using notepad. Many people using antivirus in their computer or laptop to become safe from unwanted viruses. These type of viruses may causes of slow speed of your computer.

Creating a antivirus is not difficult task for you. You can create antivirus using notepad in few minutes.

Read : Shutdown your computer in a single click


Create your own antivirus


Step 1. Open Notepad.

Step 2. Paste the below code in Notepad.


@echo off
title Antivirus
echo Antivirus
echo created by your name
:start
IF EXIST virus.bat goto infected
IF NOT EXIST virus.bat goto clean
cd C:\Windows\system32
:infected
echo WARNING VIRUS DETECTED!
del virus.bat
pause
goto start
:clean
echo System is secure!
pause
exit



Also Read : Store 1000 songs in 2GB memory card



Step 3. Save the file as name.bat and select "All files" in Save as Type option.

You can replace name with any name you want.

Step 4. Open the file.

This script will automatically detect viruses and delete them.

No comments:

Post a Comment