Skip to main content

Posts

Showing posts with the label Notepad Tricks

How to Make a Harmless Funny 'Virus' Prank in Notepad (CD Eject)

Short answer: you can make a harmless joke script in Notepad that keeps popping open the CD/DVD drive, great for a laugh on a friend's PC that has an optical drive. It is a few lines of VBScript, changes nothing, and stops the moment you close it. Here is the code, how it works, how to stop it, and the safety line you must not cross. A note before you prank anyone This is only funny on a computer you have permission to use, and only harmless because it changes nothing. Do not run scripts on someone's work machine or anywhere it could cause real trouble. A prank that annoys a friend for ten seconds is fine; one that disrupts someone's work is not. The CD-eject prank code Open Notepad . Paste this: 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 End If wscript.sleep 5000 loop Save it as prank.vbs (choose ...

The Matrix Falling Code Effect in Notepad (Fun CMD Trick)

Short answer: you can make your screen fill with the green Matrix falling-code effect using a four-line Windows batch file, no software needed. Paste the code into Notepad, save it as a .bat, and run it. Here is the code, how it works, ways to customize it, and how to stop it, all completely harmless. The Matrix batch code Open Notepad . Paste this exactly: @echo off color 02 :tricks echo %random%%random%%random%%random%%random%%random%%random% goto tricks Save it as Matrix.bat (choose "All files" as the type so it does not save as .txt). Double-click the file. Your command window fills with scrolling green numbers. How it works @echo off hides the command prompt text so only the output shows. color 02 sets the window to black background, green text, the Matrix look. :tricks is a label, and goto tricks loops back to it forever. echo %random%... prints random numbers each loop, creating the falling stream. Customize it Change How Different col...