Archestra IDE脚本。使用Process.StartInfo启动程序

时间:2018-06-05 05:44:01

标签: wonderware

我有一个脚本。它不起作用。没有UserName和密码一切都很好。并且logMessage必须告诉我" 1"是不是因为安全类型? LogMessage只显示了一个" System.Security.SecureString"现在

pass = new System.Security.SecureString;
pass.AppendChar("1");
LogMessage(pass);
proc = new System.Diagnostics.Process;
proc.StartInfo.Username = "temp";
proc.StartInfo.Password = pass;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.FileName = "notepad.exe";
proc.Start();

0 个答案:

没有答案