I have a batch file as follows:
myfile.bat
:: This is a sample batch file
@echo off
echo change directory to d: <---How to change color of only this line (comments lines)
CD d:\
...
|
I have a batch file as follows:
|
||||
|
A nearly identical question was asked 6 months after this one, and jeb provided a good answer 3 after that: how to have multiple colors in a batch file? His answer allows printing multiple colors on a single line! Here is an adaptation of his solution as a standalone batch file that can be used as a utility to print in color in batch. To print
|
||||
|
|
|
There is no built-in way of doing this. I suggest you write yourself a little helper program which either changes the color attributes of text to come or writes some text with specific color attributes. In C# this could look like the following:
Feel free to port to C or another language you like; this was just the fastest way for me after struggling with a 50-line C monster which still didn't work ;-). |
|||
|
|
|
This is source code for a program that does what you want: http://www.mailsend-online.com/blog/setting-text-color-in-a-batch-file.html I am beginning to think that there is no longer a built-in way to do this without an additional program, or modifications to the user's system. An aside - For my scenario, if modifications to the user's system was a requirement, I'd simply opt to use python, IronPython, or JScript.NET instead. |
|||
|
|
ansi.sysonly works withcommand.com. – Јοеу Apr 18 '10 at 9:08