Name

istssession — Determines if scilab is launched from a ms terminal service session. (Windows only)

Calling Sequence

istssession()

Description

tf =istssession() returns boolean (%t) if scilab is launched from a ms terminal service session and boolean (%f) otherwise.

Examples

 
if MSDOS then
  if istssession() then
    disp('Scilab from a ms terminal service session.');
  else
    disp('Scilab standard session.');
  end
end
 

Authors

A.C