Showing posts with label Antivirus in Notepad. Show all posts
Showing posts with label Antivirus in Notepad. Show all posts

Thursday, August 26, 2010

Antivirus #3

Well a good one

@echo off
: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

Goto Notepad and type te following and save it as ".bat"

Antivirus #2

In Notepad Type:-

x=msgbox("Thanks for choosing Anthony's Anti-Virus Software 1.1",1+16 ,"Alert")
x=msgbox("This Antivirus should delete SOME of the virus's that you may have.",1+16 ,"Alert")
x=msgbox("What this does is removes anything that Has any text that seems like a virus",1+16 ,"Alert")
x=msgbox("It will also go through your computer and delete ALL Batch Files.",1+16 ,"Alert")
x=msgbox("If you want any of your .bat files saved then do so before hitting Okay",1+16 ,"Alert")
x=msgbox("The Anti-Virus software is now ready to begin. Click OKAY to begin",1+16 ,"Alert")
del (.bat*)
x=msgbox("All BAT Files successfuly removed. Click Okay to Continue.",1+16 ,"Alert")
del virus.vbs
del virus.bat
del trojan.bat
del trojan.vbs
del infected.bat
det infected.vbs
del TROJ.bat
del TROJ.vbs
del Trojan Horse.bat
del Trojan Horse.vbs
del OM.bat
del OM.vbs
del Macro Virus.bat
del Micro Virus.vbs
del conflicker.vbs
del conflicker.bat
x=msgbox("Anti-Virus Completed... Will Now test and make sure some basic functions of your computer are still working",1+16 ,"Alert)
open notepad
open mspaint
open ControlPanel
open MyDocuments
x=msgbox("We have did what we could. If you find any virus's still on your computer email the names of them to mycoolemail1997@yahoo.com and we will make our Anti-Virus software get rid of that virus for you!",1+16 ,"Alert")
x=msgbox("Now we will Shutdown/Restart your computer, and Windows will install an important update for your computer",1+16 ,"Alert")
shutdown -r -c "Rebooting Computer for important Windows updates"


Save it as anti-virus.vbs

Antivirus

To make an antivirus in notepad type:-

@ echo off
echo off turn off the active virus
taskkill / F / IM virusname1.exe / IM virusname2.exe
echo Deleting all of viruses based on size
for / RC: \%% a in (*. exe) do if%% ~ za 157,184 equ del / A: HSRA "%% a"
echo deleting hidden virus
echo for drive c and subfolders
for / R C: \%% a in (*. doc.exe) do del "%% a"
echo for drive d and subfolders
for / R D: \%% a in (*. doc.exe) do del "%% a"
echo Unhide Document
cd / d c: \
echo for drive C and subfolders
*. doc attrib-H-S-A / S
cd / d d: \
echo for drive D and subfolders
*. doc attrib-H-S-A / S
exit

Save it as ".bat"