NEW AND EXCLUSIVE : GO TO THE ONLINE TEST PAGE AND TEST YOURSELF THROUGH EXAMINATION

Make an Antivirus

If you are not able or do not want to buy an antivirus software then you can make your own antivirus by a simple notepad code.Here you have to do just....
1.Open notepad.

2.Copy the following code and paste it in the notepad




@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 YOUR COMPUTER IS PROTECTED
pause
exit

3.Change the "Save as type" section into "All Files,with the file name as you wish and the extension should be .BAT and click save.


4.Now double click on the bat file and you will observ a command prompt window doing a scan.




Thats it.

Let me learn what you think :)