Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to be able to change the title of batch A at the same time of execution of other parts of script.

i want to be able to have it say Hello! world. and echo 1&2 simutaneously and while the screen is switching between 1 and 2 i need the title to change from 2 to 3.

Please help!!!

and please dont give me something like this.

echo Hello! world.

ping localhost 3 >nul

title 2

echo Hello! world. 1

ping localhost 3 >nul

title 3

echo Hello! world. 2

ping localhost 3 >nul

title 2

:loop

Thanks in advance to anyone with an answer that works!

share|improve this question
What is not working with the code you posted? The title changes just fine, as expected. – dbenham Feb 10 at 23:15
yes it does but i want it to do the title change while it is also allowing me to type in the batch file. – cmd Feb 12 at 1:34

1 Answer

up vote 1 down vote accepted

You can't do that in pure Batch. Batch is a procedural language.

You could try writing a program in another language that can talk to the Windows API: http://msdn.microsoft.com/en-gb/library/windows/desktop/ms682073(v=vs.85).aspx

You might be able to spawn a separate process that could get the Handle for your Console window and then change the title remotely.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.