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?