I'm starting up an application using the ProcessStartInfo class. As an example, let's say that I'm trying start up cmd.exe and I need to start it up as a specific user so I use the following code:
ProcessStartInfo psi = new ProcessStartInfo(path_to_app);
System.Security.SecureString ssPassword = new System.Security.SecureString();
foreach (char c in password)
{
ssPassword.AppendChar(c);
}
psi.Domain = domain;
psi.UserName = username;
psi.Password = ssPassword;
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
p = Process.Start(psi);
If I watch the processes in the task manager I see that the application is launched by the right user, but immediately after the application starts, it shuts down.
In the event viewer I get the following error:
Faulting application cmd.exe, version 1.0.0.0, faulting module kernel32.dll, version 5.2.3790.4480, fault address 0x0000bef7.
I have seen methods of impersonation using P/Invoke but I really want to avoid that at all costs.
If I do not use impersonation, it starts up fine under NETWORK SERVICE. Am I doing something wrong or missing anything?something wrong?