请教在asp.net中如何启动一个进程
SecureString _ss = new SecureString();
foreach (char c in "***")
{
_ss.AppendChar(c);
} System.Diagnostics.Process.Start(@"f:\*.exe","username",_ss,AppDomain.CurrentDomain.FriendlyName);
用上面这段代码,启动一个*.exe程序,但是启动失败,报0xc0000142错误,由于水平有限,个人找不到原因。请广大朋友指教。不胜感激!
foreach (char c in "***")
{
_ss.AppendChar(c);
} System.Diagnostics.Process.Start(@"f:\*.exe","username",_ss,AppDomain.CurrentDomain.FriendlyName);
用上面这段代码,启动一个*.exe程序,但是启动失败,报0xc0000142错误,由于水平有限,个人找不到原因。请广大朋友指教。不胜感激!