You can do this by assigning arguments to the startup information, for example:
var process = new Process { StartInfo = { FileName = processName, Arguments = "-username=Alice" } }; process.Start();
If your process does not start, you can check the permissions to my knowledge that code running in IIS is not allowed.
source share