Notepad Tricks IV 05:18 BackBenchers World In this post here below are shown some cool Notepad trick which can be used in your Windows PC. Open Notepad continually in your friend’s computer Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. @ECHO off :top START %SystemRoot%\system32\notepad.exe GOTO top Step 3: Now Save the file as AP.bat (Press Ctrl + s and write the file name as AP.bat and Choose Save as type to All Files) Step 4: Now if you Double Click on this file to open it, a notepad window will be opened continually many times. Read More Notepad Tricks / Tips & Tricks No Comments
Notepad Tricks III 12:54 BackBenchers World In this post here below are shown some cool Notepad trick which can be used in your Windows PC. Create Fake Windows Errors With Notepad Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. X=Msgbox(“Message Here”,0+16,”Title Here”) Step 3: Replace Message Here and Title Here with your Error Message and Error-Window Title respectively. Step 4: Now Save the file as Error.vbs (Press Ctrl + s and write the file name as Error.vbs and Choose Save as type to All Files) Step 5: Now, click the file and you’ll get your custom-made Windows error message. Force Shutdown Your Windows Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. @echo off msg * Shutdown computer shutdown -c “Sleep Tight” -s Step 3: Now Save the file as Shutdown.bat (Press Ctrl + s and write the file name as Shutdown.bat and Choose Save as type to All Files) Step 4: Click on your file and it will automatically shutdown your Windows. Note: The file name could be anything but the extension must be .bat. Make Computer To Speak Your Sentence Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. Dim message, sapi message=InputBox(“What do you want me to say?”,”Speak to Me”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message Step 3: Now save the file as ABC.vbs (Press Ctrl + s and write the file name as ABC.vbs and select file type as All Files) Step 4: Open your saved file, it will open a prompt. Enter the sentence you want your computer to speak. Step 5: Click OK and Notepad will speak the sentence for you. Note: The file name could be anything but the extension must be .vbs. Previous Page Next Page Read More Notepad Tricks / Tips & Tricks No Comments
Notepad Tricks II 12:17 BackBenchers World In this post here below are shown some cool Notepad trick which can be used in your Windows PC. Create Infinite Number Of Folders By Double Clicking Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. cls @echo :ap md %random% goto ap Step 3: Now Save the file as AP.bat (Press Ctrl + s and write the file name as AP.bat and Choose Save as type to All Files) Step 4: Now if you Double Click on this file to open it, infinite number of empty folders will be created. Note: 1. The file name could be anything but the extension must be .bat . 2. Before double clicking on this file, place it in a separate directory (folder) else the folders will be created in current directory. The 9/11 Attack The World Trade Center on (9/11) was hit by flight "Q33NY". Now we you will be definitely amazed by this trick. Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. Q33NY Step 3: Increase the font size to maximum i.e. 72. Step 4: Change the Font to Wingdings. Dancing Keyboard Led Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. Set wshshell = wscript.CreateObject("WScript.Shell") do wscript.sleep 100 wshshell.sendkeys "{CAPSLOCK}" wshshell.sendkeys "{NUMLOCK}" wshshell.sendkeys "{SCROLLLOCK}" loop Step 3: Now save the file as ABC.vbs (Press Ctrl + s and write the file name as ABC.vbs and select file type as All Files) Step 4: Open your saved file and see the keyboard led blinking like disco lights. Note: The file name could be anything but the extension must be .vbs. Previous Page Next Page Read More Notepad Tricks / Tips & Tricks No Comments
Notepad Tricks I 10:48 BackBenchers World In this post here below are shown some cool Notepad trick which can be used in your Windows PC. Make Your PC Welcome You When It Starts Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. Dim speaks, speech speaks="Welcome Back, Your_Name" Set speech=CreateObject("sapi.spvoice") speech.Speak speaks Step 3: Now save the file as Welcome.vbs (Press Ctrl + s and write the file name as Welcome.vbs and select file type as All Files) Step 4: Move this file to the startup folder. Tip: For the above operation you can Browse the Startup folder while saving the file else you can save it to document folder and than cut and paste to the Startup folder. Note: It is necessary that this file should be placed in Startup Folder else it will not work. Using Notepad As Diary A simple way to record what you are doing at certain times is with a .LOG file in Notepad. Using this method, each time you open and close Notepad, a timestamp is created to time your activities more efficiently. Simply open the document, record what you did, save the file, and then close it. Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: On the very first line write .LOG and save the file with any name but with .txt extension and close it. Step 3: Now whenever you open the file in Notepad, a timestamp will be inserted. Note: If you are in any text document in Notepad and decide you need to add the current timestamp, just hit F5. The timestamp will automatically be created. Apply Loop To CD Drive To Eject Several Times Procedure: Step1: Open Notepad (Press Windows key + r and type notepad and hit Enter). Step2: Copy and Paste the following text into the notepad window. 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 Step 3: Now save the file as ABC.vbs (Press Ctrl + s and write the file name as ABC.vbs and select file type as All Files) Step 4: Now if you Double Click on this file to open it, loop will be applied to eject CD-Drive 5000 times. Tip: In order to revert this operation, open Task Manager and Find the Script Process and End Process it. Note: The file name could be anything but the extension must be .vbs. Next Page Read More Notepad Tricks / Tips & Tricks No Comments