How to Make a Batch Antivirus
Hey guys I gave you a temporary virus code now here's one for a batch antivirus which detects batch viruses and scans batch files STEP #1:-OPEN NOTEPAD STEP #2:-TYPE IN EITHER OF THESE TWO CODES(I'VE TRIED BOTH) CODE 1 @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 CODE 2[If the code does not run, try replacing {} braces by these parantheses ()] @echo off color cb title Batch Antivirus cls echo =============== echo [ Batch-Master] 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...
Comments
Post a Comment