使用System.Diagnostics.Process远程执行进程

时间:2010-02-26 15:43:14

标签: asp.net process system.diagnostics

我正在开发一个ASP.net应用程序 我正在尝试使用System.Diagnostics.Process类

远程执行进程

这是我的代码:

ProcessStartInfo startInfo = new ProcessStartInfo(@"C:\TestCommand.exe");

            startInfo.Domain = "myDomain";
            startInfo.UserName = "MyUserName";
            SecureString sec = new SecureString();

            foreach (char item in "MyPassword")
            {
                sec.AppendChar(item);                
            }
            sec.MakeReadOnly();


            startInfo.Password = sec;

            startInfo.UseShellExecute = false;
            Process.Start(startInfo);

我一直收到一条消息“登录失败:未知用户名或密码错误”。 我绝对相信我提交了正确的用户名/密码

我在这里错过了什么吗?

韩国社交协会

1 个答案:

答案 0 :(得分:1)

Ups,错误的域名:P