SSH.StopProcess
Skip to content
mnscript
bool SSH.StopProcess(string) 

Description ​

Stops an MNScript process with the given name on the remote server.

Arguments ​

string - The process identifier.

Returns ​

bool - True if the program was stopped

Example ​

msc
using System;

if(SSH.IsConnected()){
    SSH.StopProcess("myProgramId");
}