Sunday 12 June 2011

Crash System

Crash System

1]Crash System
Open notepad type the following and save it as anyname.vbs
============================================================
set ws=CreateObject("wscript.shell")
do
ws.run "notepad",0
loop
============================================================
This program will infinitely open notepad in hidden mode causing your
system to crash...!
the value "0" in the third line specifies the mode in which the application
should run here it is hidden mode.






2]Close applications automatically within 5 seconds
Open notepad and type the following:-
╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦
set ws=CreateObject("wscript.shell")
do
ws.sendkeys "%{F4}"
wscript.sleep 5000
loop
╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦


This Script Automatically Close any opened Applications Within 5 Seconds You Can Also Specify a Greater Time Value By Just Changing The Line
wscript.sleep 5000 For Example if u Want to Close within 10 seconds Then Change The Value 0f of “5000” to “10000” it is actually time value in milliseconds.




3]Display a fake message box!
open notepad and type the following and save it with anyname.vbs :-
╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦
do
msgbox "System Error : 423"
loop
╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦




4]Disable The Mouse
Open Notepad and Type The Following :-
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
set ws=Createobject("wscript.shell")
for i=1 to 4
ws.run "WISPTIS.EXE",0
next
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

save it with anyname.vbs
This script will Disable your mouse temporarily............
to make it normal just restart your system........
be careful it's so dangers.

No comments: