We can make so many tricks by using note pad . the 1st basic hacks was begins with notepad only.
CREATING 50000 FOLDERS AT A TIME:
This is a note pad trick which creates folders about 20,250.
By adding %random% in third line u can create more and more folders
Step1:
one
notepad(text doc) in desktop and copy below code
@echo
:loop
md
%random% %random% %random% %random% %random% %random%
goto loop
Step2:
Save it as .bat extension(myhack.bat)
Step3: that’s
all u created a successfully a
folder hack.before testing it save it in a folder and test . if u save it in
desktop it leads to creating unlimted folders it is every difficult to delete
all folders.
MATRIX CODE FALLING EFFECT :
Copy and paste the code given below in Notepad and save the file
as .BAT Extension(Matix.bat)
@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%
goto tricks
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%
goto tricks
Save it as
.bat extension shown in below
After saving
it has a batch file and looks like
Then run the above bat file u will see the matrix falling effect shown
below
FiG:matrix fall effect
U can change the colour by editing
the 2nd line color 02 as 3,4,5
different numbers have different colour specifications and are as shown below
MAKE YOUR KEYBOARD CONTINUOUSLY TYPING MESSAGE VBS(Visual Basic Script) TRICK: vbs plays an important role for funny hack to the beginners. vbs has a strong command lines.copy and paste the below link in note pad
Set wshShell =
wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop
and save it has .VBS Extension.
NOTE:you need to restart your pc OR Stop this service in taskbar Wscript name
REPEATED MESSAGES BY YOUR OWN:
You can frustrate your friend by showing repeated messages in the notepad,by following this simple notepad tricks.open note pad copy and paste the below code.
@ECHO off
:Begin
msg * Hai
msg * How are you dear….
msg * I am fine ya!
msg * Lets have fun together!
msg * Because you have been o-w-n-e-d
GOTO BEGIN
Save it has .bat Extension. you can type any after msg*
CONTINUOUSLY EJECTING DVD/CD DRIVE:
This is also an vsb trick.this trick creates a code that continuously eject your drives.
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 5000
loop
Post a Comment