gpt4 book ai didi

asp.net - 使用 System.Diagnostics.Process 远程执行进程

转载 作者:行者123 更新时间:2023-12-02 10:48:05 25 4
gpt4 key购买 nike

我正在开发 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);

我不断收到异常消息“登录失败:未知的用户名或错误密码”。我绝对确定我正在提交正确的用户名/密码

我在这里错过了什么吗?

谢谢

最佳答案

Ups,错误的域名:P

关于asp.net - 使用 System.Diagnostics.Process 远程执行进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2342764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com