Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch File Window Title
Name: S A Date: October 30, 2003 at 10:12:57 Pacific OS: XP CPU/Ram: P4/1.5GB
Comment:
What syntax do you use to change the title bar that displays when the batch file opens?
Name: JackG Date: October 30, 2003 at 12:34:32 Pacific
Reply:
You would have to write a program that runs and issues Windows API commands that change the title bar message.
0
Response Number 2
Name: IVO Date: October 31, 2003 at 01:53:05 Pacific
Reply:
If you use the Start command to run your batch then
Start "Windows Title" Batch_Name
Where "Windows Title" has to be substituted with your desidered title. If you use a shortcut to run the batch then set the appropriate box in Properties.
0
Response Number 3
Name: bob cat Date: November 12, 2003 at 07:36:19 Pacific
Reply:
Or you could just use the title dos command.
EG: TITLE put_new_title_here
should be run as the first line of your batch file.
Summary: In Windows 98, I have a DOS batch file which runs a Windows 98 executible using the START command, for example: START C:\windows\program.exe The above command line appears as the title text in th...
Summary: This is driving me crazy. I'm trying to run a batch file from a windows icon. The stupid cmd window closes after execution. Windows 2000 does not seem to have that option to keep it open in properties...
Summary: What is the batch command, if any, to close the DOS window after the batch file is complete? I am running Win 95 and am using batch files to apply patches silently: However, when the batch process is...