How To make your own Antivirus.
1).
Open Notepad from start menu.
Open Notepad from start menu.
2).
Copy and paste the given below 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
3).
Now save file file with "antivirus.bat" without commas and with ".bat" extension and select "All files"
4).
Now you have made your antivirus.Double click on this file and automatically scan starts
@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
3).
Now save file file with "antivirus.bat" without commas and with ".bat" extension and select "All files"
4).
Now you have made your antivirus.Double click on this file and automatically scan starts
Thanks for sharing. You also find this on> http://www.anytrick.com/how-to-make-your-own-antivirus/
ReplyDelete