Introduction: Full Screen Batch Matrix
Today I will show you how to make a full screen batch matrix.
Step 1: How to Begin
First open notepad.exe you can type it into the search bar or rght click and select new then new text document open it and type the following code ( @echo off to goto top)
@echo off
Cls
Color 02
:top
Echo %random%%random%%random%%random%%random%
Goto top
Now goto save as and enter a name followed by .bat For example matrix.bat the select all documents so it doesn't save as matrix.bat.txt and save it
Step 2: Full Screen
Is this small box not enough for you then try a full screen version of it
@echo off
Cls
Mode 1000
Color 02
Title Advanced matrix
:top
Echo %random%%random%%random%%random%%random%
Goto top
Step 3: Extra
I hope you enjoyed my first instructable I was hoping to start a website for batch coding and wanged to know which hosting site I should use google sites webs weebly wix or a different free one and if any one wanted to become a site moderator .
If you have any cool codes to share with me send them to batchcc@gmail.com or if you want to be a site moderator email me thanks.
Share
Recommendations

We have a be nice policy.
Please be positive and constructive.
17 Comments
See more tuts https://www.instructables.com/member/batchcc here
Thank you for over 70,000 views! Also comment #100
this didnt make it fullscreen, just full windowed
thank you everyone for 6000 views
https://www.instructables.com/id/Batch-codes/ all my batch code tutorials.
I meant full screen matrix lol
did you look at step 2? The first step is the normal matrix.
Full screen batch do not work!
Tip: You can add the command "mode" and then add "1000" so when opened it takes up the whole screen like i did below:
@echo off
Cls
Mode 1000
Color 02
:top
Echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%
Goto top
if you read step 2 it would tell you this
See all my batch codes here
https://www.instructables.com/id/Batch-codes/
:)
i have mac how do i do it??
you would need a windows. I have a mac too so i use paralles desktop
download notepad ++
please comment
sorry only works on windows computers I would recomend posing this question on stackoverflow.com sign up is free !
Interesting project. Thanks for sharing.