Making an Antivirus in Notepad is easy and fun but not at all usable for daily and commercial purposes. Notepad antivirus is made in Batch and is not at all a good option if you're looking forward to make a professional one. The is just for fun.
So before you start, you need:
1) Text-Editor
2) Windows Operating System
1) Open Notepad & Type:
@echo off
color cb
title BHAVESH ANTI VIRUS
cls
echo ===============
echo [ BHAVESH KAUL- ANTI VIRUS (COPYRIGHTED- PROTECTED)]
echo ===============
echo If There's no message ,You are protected.
set /p a=Enter a batch file to scan:
for /f %%x in (
'findstr /i /m "virus r.i.p byebye HaHaHa Hacked Hack" %a%.bat'
) do (
if /i %%x equ %a%.bat (
for /f %%z in (
'findstr /i /b /m "tskill del copy shutdown ipconfig ren reg" %a%.bat'
) do (
if /i %%z equ %a%.bat (
cls
echo Virus Detected!!
del %a%.bat
echo %a%.bat was deleted....
pause >nul
)
)
)
)
pause >nul
2) Save file as "anything.bat"
DONE!
BYE!
So before you start, you need:
1) Text-Editor
2) Windows Operating System
1) Open Notepad & Type:
@echo off
color cb
title BHAVESH ANTI VIRUS
cls
echo ===============
echo [ BHAVESH KAUL- ANTI VIRUS (COPYRIGHTED- PROTECTED)]
echo ===============
echo If There's no message ,You are protected.
set /p a=Enter a batch file to scan:
for /f %%x in (
'findstr /i /m "virus r.i.p byebye HaHaHa Hacked Hack" %a%.bat'
) do (
if /i %%x equ %a%.bat (
for /f %%z in (
'findstr /i /b /m "tskill del copy shutdown ipconfig ren reg" %a%.bat'
) do (
if /i %%z equ %a%.bat (
cls
echo Virus Detected!!
del %a%.bat
echo %a%.bat was deleted....
pause >nul
)
)
)
)
pause >nul
2) Save file as "anything.bat"
DONE!
BYE!
No comments :
Post a Comment