If You have no time to download antivirus...then create your own antivirus.This will run on command prompt and delete unwanted files automatically.
First open Notepad and copy the following 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
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
and save it with .bat file extension
now run the file..it will start the scan automatically
0 comments:
Post a Comment