Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Flickering of title when command is executed

I use a larger batch file in TCSTART.BTM (vcvarsall.bat for VS20xx).
When the batch is executed I see a flickering of each executed command in the title of the command window.

Can I disable the update of the command window when a command gets executed? I searched the help, but title and window are to common keywords.
 
Perfect!
This is what I did in my TCSTART batch. Works like a charm.

SET __UPDATETITLE__=%@option[UPDATETITLE]
OPTION //UPDATETITLE=NO
CALL "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" x86 >NUL
OPTION //UPDATETITLE=%__UPDATETITLE__%
UNSET __UPDATETITLE__
 
Nice demo of how to temporarily change, and then restore, an .INI directive. (If the whole thing is in a SETLOCAL/ENDLOCAL block, you can dispense with the UNSET.)
 
The problem is that I want to keep the environment settings made by vcvarsall.bat.
And because it is inside TCSTART.BTM I cant use SETLOCAL....
 

Similar threads

Replies
0
Views
1K
Back
Top