ad3

Sunday, September 27, 2015

Make a "Matrix Code" Program with Command Prompt

Making a matrix code program in windows is easy and doesn't require you to download anything!

So how do you make this program?  It's easy!  This program really isn't a program at all.  It's a script.  It's call a BATCH script.  It's a scripting language developed by Microsoft to have your computer run tasks automatically.  All this program does is print or "echo" random numbers in green on your screen.




So, to this follow these steps:
   1. Open your Run Dialogue Box (Win + R)
   2. Type the Following:
        @ECHO OFF
         CLS
         TITLE THE MATRIX
         COLOR 0A
         :START
         ECHO %RANDOM%
         REM Copy and paste %RANDOM% x30
         GOTO START

Next, "Save As" the file to your desktop with the name matrix.bat

Then, Select All files

Lastly, Click Save

Now go to your desktop and double click it


You should now see the matrix running on your screen.

4 comments: