Run

Item Description

Use with:

Startup scripts, Terminal Launcher, Web, and Windows

SecureLogin version:

All

Type:

Action

Usage:

Run command [arg1] [arg2] [...]

Arguments:

command

arg1, arg2

The full path of the command to be executed.

An optional list of arguments to the command.

Description:

Launches the program specified in the command variable with the specified optional [arg1] [arg2] [...] arguments. The script doesn't wait for the launched program to complete.

Example:

Dialog  
 Title "Login"
 Ctrl #1
EndDialog
MessageBox -yesno ?result "Would you like to also run Notepad?"
If ?result eq Yes 
Run C:\Windows\Notepad.exe
EndIf