Do you want to make your own ANTIVIRUS??
Hello readers if you are looking to make your own ANTIVRUS then first of all you need a license in order to make your own antivirus. According to law creating an antivirus without license is not ethical. Actually creating ANTIVIRUS is extremely complicated. You need a team for this work who are good in coding, and ARE good for designing ANTIVIRUS‘interface and yes you need a lot of Malware database around 10000-20000 databases or may be more is required in order for ANTIVIRUS to work.
Requirements for building ANTIVIRUS:-
Here is a basic requirements for building ANTIVIRUS. First you need a clean, write-protected, bootable diskette for your operating system. A bootable diskette is 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 you’ll have easy access to them when you need them. Bootable diskettes are useful for many different situations, so this is something you really should 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 files which may slowdown your computer and windows. But if you don’t have enough time to download any best ANTIVIRUS. Then simply use this tehnique to make your own ANTIVIRUS.
This ANTIVIRUS scan by using command prompt and delete unwanted files automatically.
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.
ENJOY..
Post a Comment
Write Your Precious Comments Here.!