Quizzes & Puzzles60 mins ago
CMD trouble
13 Answers
I need the command lines for the following things:
1. make text bold.
2. change the window size to full screen.
Cheers, Nike
1. make text bold.
2. change the window size to full screen.
Cheers, Nike
Answers
Best Answer
No best answer has yet been selected by Nikephoros1. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.Are you wanting to type in bold in a DOS box? If so, why? Or have we misunderstood you regarding your heading of "CMD trouble"? You can change the DOS box size, look and feel by simply changing it's parameters :
Create a new shortcut on the desktop (right-click on the desktop, New Shortcut), then simply enter %SystemRoot%\system32\cmd.exe. Give it a name of CMD or whatever, and then right-click this shortcut and select Properties, to reveal a host of properties (Full-Screen, font, colours etc).
Hope this helps, but as I am not sure exactly what you are asking, I have some doubts :)
Paul
Create a new shortcut on the desktop (right-click on the desktop, New Shortcut), then simply enter %SystemRoot%\system32\cmd.exe. Give it a name of CMD or whatever, and then right-click this shortcut and select Properties, to reveal a host of properties (Full-Screen, font, colours etc).
Hope this helps, but as I am not sure exactly what you are asking, I have some doubts :)
Paul
right .... I think I understand what you are trying to do
you want to run a batch file that shows progress or some other text while it is running
ie
***********************************
echo off
echo getting ready to do this job
del c:\*.*
cls
echo fooled you !!!!
***********************************
you want the window to appear full screen .... and the text in it to appear in bold
(this explanation partly is to stop the others fratching!!!!!)
the short answer is .... you can't do it without going to an incredible amount of trouble
see http://en.wikipedia.org/wiki/ANSI.SYS
and follow the external links as well
what you'll see however is .... no bold<b/>
the standard font for a comand line doesn't include bold ....
and modifying the shortcut doesn't seem to do anything
what you could do is use colours
by including the line - for instance
color 31
(yuck!)
(give aqua background blue writing)
0 = Black 8 = Gray
1 = Blue 9 = Light Blue
2 = Green A = Light Green
3 = Aqua B = Light Aqua
4 = Red C = Light Red
5 = Purple D = Light Purple
6 = Yellow E = Light Yellow
7 = White F = Bright White
as for full screen
a cmd window is 80x25 - because that's how it is
the only way I know of making the window full screen is to create a shortcut and modify the options.
this could be packaged into a self extracting RAR archive
containing a batch file to run your batch and a modified link
when run.... would extract to the temp folder ...and auto run the batch file
the question is .... is it worth it?
you want to run a batch file that shows progress or some other text while it is running
ie
***********************************
echo off
echo getting ready to do this job
del c:\*.*
cls
echo fooled you !!!!
***********************************
you want the window to appear full screen .... and the text in it to appear in bold
(this explanation partly is to stop the others fratching!!!!!)
the short answer is .... you can't do it without going to an incredible amount of trouble
see http://en.wikipedia.org/wiki/ANSI.SYS
and follow the external links as well
what you'll see however is .... no bold<b/>
the standard font for a comand line doesn't include bold ....
and modifying the shortcut doesn't seem to do anything
what you could do is use colours
by including the line - for instance
color 31
(yuck!)
(give aqua background blue writing)
0 = Black 8 = Gray
1 = Blue 9 = Light Blue
2 = Green A = Light Green
3 = Aqua B = Light Aqua
4 = Red C = Light Red
5 = Purple D = Light Purple
6 = Yellow E = Light Yellow
7 = White F = Bright White
as for full screen
a cmd window is 80x25 - because that's how it is
the only way I know of making the window full screen is to create a shortcut and modify the options.
this could be packaged into a self extracting RAR archive
containing a batch file to run your batch and a modified link
when run.... would extract to the temp folder ...and auto run the batch file
the question is .... is it worth it?