| Re: Batch File Questions The date and time was Tuesday, June 30, 2009 6:23:24 PM, and on a whim,
Tim Meddick pounded out on the keyboard:
> It's probably simpler to use the "TITLE" command in a batch file to set
> the title, thusly :
>
>
>
> @echo off
> title My Program
> start /w /b "C:\Program Files\My Application\My Program" /parameters
>
>
>
> ....please note - there's no need for "quotes" after the 'title'
> command.
>
>
> ==
>
> Cheers, Tim Meddick, Peckham, London. :-)
>
>
>
Tim,
You have to add the title quotes, even if they are dummies:
start "" /w /b "C:\Program Files\My Application\My Program" /parameters
otherwise what is between the quotes is interpreted as the title.
Terry R.
--
Anti-spam measures are included in my email address.
Delete NOSPAM from the email address after clicking Reply. |