Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks
Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks
Matrix Falling Code Effect - Notepad Trick |
Upon running the bat file, you will see the "Matrix falling code" effect.
Make Your Keyboard Type (Any) Message Continuously-VBS Trick
This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs. You will need to restart your computer to stop this. Try this after closing all important programs.Set wshShell = wscript.CreateObject("WScript.Shell")Send this file to your friends as an email attachment to see the fun.
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop