Flickering of title when command is executed

Sep 10, 2009
42
0
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.
 
Sep 10, 2009
42
0
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__
 

Charles Dye

Super Moderator
Staff member
May 20, 2008
4,689
106
Albuquerque, NM
prospero.unm.edu
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.)
 
Sep 10, 2009
42
0
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
717