FRENDS⁴ Common Components : Frends.Common.Execute.ExecuteProcess.ExecuteProcessAsynchronously

This task executes a given process with the given parameters asynchronously.

Input Parameters

Parameter nameDescriptionData typeExample values
Script path

The path to the script or process that is to be executed.

Server variables can also be used for example "cmd" is valid for most servers

String

"cmd"

Arguments

An array of argument names and values that are passed to the executable script or process.

The arguments have following parameters:

Parameter nameDescriptionData typeExample
NameName of the argumentString "/C"
ValueValue of the argumentString  "nslookup google.com"
Object collection 

Output

  • Boolean
    • Returns true if starting the process was successful.

Example Usage

ScriptPath: "cmd"

Arguments:  

  • Argument 1
    • Name = "/C"
    • Value = "nslookup google.com"

Results

true