Take Command / TCC Help v. 13.03

Detecting TCC and Take Command

Hide Navigation Pane

Detecting TCC and Take Command

Previous topic Next topic No directory for this topic No expanding text in this topic  

Detecting TCC and Take Command

Previous topic Next topic Topic directory requires JavaScript JavaScript is required for expanding text JavaScript is required for the print function Mail us feedback on this topic!  

Comments (...)

From a batch file, you can determine if TCC is loaded by testing for the variable function @EVAL, with a test like this:

 

if "%@eval[2 + 2]%" == "4" echo Take Command is loaded!

 

This test can never succeed in CMD. (Other variable functions could also be used for the same purpose.)

 

You can determine if TCC is running in a Take Command tab window with the internal variable _TCTAB:

 

if %_tctab == 1 echo TCC is running in a Take Command tab window!

Comments (...)