You are on page 1of 1

Requirements for building ANTIVIRUS:-

Here is a basic requirements for building ANTIVIRUS. First you need a clean, wri
te-protected, bootable diskette for your operating system. A bootable diskette i
s a diskette that has the basic pieces on it that are needed to load DOS on your
PC. It can be constructed using the format/s command. You will need to copy the
following DOS files to the diskette: FORMAT.COM, FDISK.EXE, SYS.COM, and XCOPY.
EXE1. You may want to make several of these diskettes and keep them in different
locations so youll have easy access to them when you need them. Bootable diskett
es are useful for many different situations, so this is something you really sho
uld put together.
So here i decided to provide u some simple Steps To make your own ANTIVIRUS.
The main functioning of ANTIVIRUS is to detect and remove harmful or unwanted f
iles which may slowdown your computer and windows. But if you dont have enough ti
me to download any best ANTIVIRUS. Then simply use this tehnique to make your ow
n ANTIVIRUS.
This ANTIVIRUS scan by using command prompt and delete unwanted files automatica
lly.
Steps to create your own ANTIVIRUS :-
STEP-1) Open your Notepad and paste this given 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
STEP-2) Save this code as:- antivirus.bat
and select:- All files
STEP-3) Now run your saved files- Automatically scan starts.

You might also like