Computer Science, asked by parthapratimdas022, 8 months ago

how to create your own antivirus using notepad​

Answers

Answered by ayush1gaming2hub
0

Answer:

Before starting it, I would like to request you to follow all the steps perfectly.

First of all, open Notepad and paste the below code.

@echo off

title Antivirus

echo Antivirus

echo created by your name

:start

if exist virus.bat go to infected

cd C:\Windows\system32

if not exist virus.bat go to clean

:infected

echo warning virus detected

exit

del virus.bat

pause

go to start

:clean

echo System secure!

pause

Now save your file with the name of antivirus.bat. Also, “All Files” in Save as type column

Create Your Own Antivirus Using Notepad

Now you are almost done. Open your saved file that will look like below image. Here press any key to continue. I will prefer to press the key “Enter”.

Create Your Own Antivirus Using Notepad

Your own created antivirus has now started to scan your computer.

Explanation:

Similar questions