" Learn Free Coding contains well written, well thought, well explained and easily Understandable computer science articles, Learn C, Java, Python, HTML, C# & everything else. "

Create Your Own Antivirus Using Notepad - CodinGyan

🔰Create your own Antivirus🔰

By - @codinGyan


1. Open notepad



2.  Type in the following @echo off

Then,

color cb
title Antivirus
cls
echo ===============
echo [ Batch-Scanner]
echo ===============
echo If There is 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 ” %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

 Created by @codinGyan
Create Your Own Antivirus Using Notepad - CodinGyan Create Your Own Antivirus Using Notepad - CodinGyan Reviewed by Shaishav Anand on July 16, 2019 Rating: 5

1 comment:

Powered by Blogger.