How to create your own antivirus software using notepad in 2 STEPS.

hi tech readers !!! do u want create your own antivirus program. In this article i will show u how to create a antivirus program.This antivirus scan  using command prompt and delete unwanted files automatically.create your own antivirus software using notepad in 2 STEPS.


step 1:

Open your Notepad and paste this given code 

@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 secure!
pause
exit

step2:


 Now save your file with namevirus.bat and select “All files”   now run your saved files automatically scan starts 

Comments