我如何以编程方式关闭 rdp 连接

发布于 2025-01-11 22:02:26 字数 91 浏览 0 评论 0原文

我在服务器上有一个应用程序。我可以使用 rdp 连接到它,但在某些情况下(例如来自客户端的请求)我需要该服务来关闭连接。如何检测现有的 rdp 连接并关闭它(如果有)?

I have an application on the server. I can connect to it using rdp, but under some circumstances(request from client, for example) I need the service to close the connection. How can I detect an existing rdp connection and close it if it has?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素食主义者 2025-01-18 22:02:26

您可以尝试使用以下代码。我在我身边尝试过,它正在发挥作用。

包:使用 System.Diagnostics;

    Process[] processes = Process.GetProcessesByName("mstsc");
    int pid = processes[0].Id;
    Process pro = Process.GetProcessById(pid);
    pro.Kill();

You can try with the following code. I tried at my side and it is working.

Package : using System.Diagnostics;

    Process[] processes = Process.GetProcessesByName("mstsc");
    int pid = processes[0].Id;
    Process pro = Process.GetProcessById(pid);
    pro.Kill();
笔落惊风雨 2025-01-18 22:02:26

Windows 实用程序 tsdiscon 可以做到这一点

Process.Start(Environment.Is64BitOperatingSystem && !Environment.Is64BitProcess
   ? Environment.ExpandEnvironmentVariables(@"%windir%\sysnative\tsdiscon.exe")
   : "tsdiscon.exe");

windows utility tsdiscon can do this

Process.Start(Environment.Is64BitOperatingSystem && !Environment.Is64BitProcess
   ? Environment.ExpandEnvironmentVariables(@"%windir%\sysnative\tsdiscon.exe")
   : "tsdiscon.exe");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文