3
我工作的一個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);
我一直收到一條異常消息「Logon failure:unknown user name or bad password」。 林absolutelly確保我在這裏submiting我正確的用戶名/密碼
我失去somethig?
韓國社交協會