UtilitiesRunExecutable Method |
Wrapper for Process.Start that shows error messages in the event of failure.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static bool RunExecutable(
string sExecute,
string sParams
)
Public Shared Function RunExecutable (
sExecute As String,
sParams As String
) As Boolean
public:
static bool RunExecutable(
String^ sExecute,
String^ sParams
)
Parameters
- sExecute
- Type: SystemString
Fully-qualified filename to execute. - sParams
- Type: SystemString
Command line parameters to pass.
Return Value
Type:
BooleanTRUE if the execution succeeded. FALSE if the execution failed. An error message will be shown for any error except the user declining UAC.
See Also