Sunday, November 13, 2016

How to make your own Antivirus?

How to make your own Antivirus?

Antivirus software is a set of measures aimed at preventing, search, detection, and removal of software viruses and other malware, like worms, Trojans, adware, and many more programs. There are a few different companies, set up and provides antivirus software, and what each preference may vary, but all perform basic functions: anti-virus software is a set of measures aimed at preventing, search, detection, and removal of software viruses and other malware, like worms, Trojans, adware, and many more programs. There are a few different companies, set up and provides antivirus software, and what each preference may vary, but all perform basic functions:
  • Scan specific files or directories for any malware or known malicious patterns
  • Allow you to schedule scans to automatically run for you
  • Allow you to initiate a scan of a specific file or of your computer, or of a CD or flash drive at any time.
  • Remove any malicious code detected –sometimes you will be notified of an infection and asked if you want to clean the file, other programs will automatically do this behind the scenes.
  • Show you the ‘health’ of your computer
  • Always be sure you have the best, up-to-date security software installed to protect your computers, laptops, tablets and smartphones.

How to make your Own Antivirus?

#1: This antivirus will work with the command prompt and delete all your unwanted or malicious files from your system.

#2: Open your notepad in your system by using type name: ‘notepad’ in search or press Win+R and type: ‘notepad’, and press enter.

#3: After notepad open just copy the code and paste it into your empty notepad.

#4: Code is:
@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
#5: Now, save your file with .bat extension like: XPCMasti.bat and select on all files.

#6: Now, run your file it will automatically starts the scanning process.