启用mstsc.exe并在启用时配置pekts00.rdp

时间:2013-04-16 15:31:30

标签: c# rdp

我正在为我的某个应用程序添加安全性。我希望启用,启用C:\ Windows \ System32 \ mstsc.exe c:\ thinclient \ pekts00.rdp配置.rdp(远程桌面)。它将继续运行以检查mstsc.exe是否正在运行并将注销窗口或启动它,如果不是。

1 个答案:

答案 0 :(得分:1)

尝试如下......它会帮助你...

System.Diagnostics.Process[] pname = System.Diagnostics.Process.GetProcessesByName("mstsc");
if (pname.Length == 0)
 System.Diagnostics.Process.Start(Environment.GetEnvironmentVariable("windir") + @"\system32\mstsc.exe");