Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Create Own Command Prompt

writing your own Command Prompt is pretty cool because you can mess around with some stuff and it is useful to hack stuff at your school.

open up notepad and put in this code:


Code:
@ECHO OFF
BREAK OFF
Title ______________
color ___
cls

:cmd
set /P CMD=Command:

%CMD%
ECHO.

goto cmd
The areas of _________ are stuff you put in by yourself

after title put what you want to appear on the bar on the top of your cmd
after color put the color you want the text and background to be. this is done by code so dont try writing in words. The code 0c gives you red writing with a black background. the background color goes first followed by txt color. here is a table of the colors


0 = Black 
1 = Blue 
2 = Green 
3 = Aqua 
4 = Red 
5 = Purple
6 = Yellow
7 = White
8 = Gray
9 = Light Blue
A = Light Green
B = Light Aqua
C = Light Red
D = Light Purple
E = Light Yellow
F = Bright White

for example 6f would give you a yellow backgound with bright white writing
now all you need to do is save it. make sure you save it with the file extension .bat or it wont work



This post first appeared on Tech, please read the originial post: here

Share the post

Create Own Command Prompt

×

Subscribe to Tech

Get updates delivered right to your inbox!

Thank you for your subscription

×