Click or drag to resize

YStaticMethodsProcessStart(String, Boolean, Boolean) Method

Run the given command without arguments.

Namespace: Upsilon.Common.Library
Assembly: Upsilon.Common.Library (in Upsilon.Common.Library.dll) Version: 2.2.2+14985a67b419f90e14e6b1bde61d18cf6cf12b27
Syntax
C#
public static Process ProcessStart(
	string command,
	bool useShellExecute = true,
	bool createNoWindow = false
)

Parameters

command  String
The command to execute.
useShellExecute  Boolean  (Optional)
Use shell execute command. By default it is true. Will be override to false if createNoWindow is set to true.
createNoWindow  Boolean  (Optional)
Create no window. By default it is false.

Return Value

Process
The process started.
See Also