<< getsystemmetrics Windows tools mcisendstring >>

Scilab Help >> Windows tools > istssession

istssession

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

Syntax

istssession()

Description

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

Examples

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

See also


Report an issue
<< getsystemmetrics Windows tools mcisendstring >>