保持远程桌面会话“活动”

发布于 2024-10-29 20:10:31 字数 1549 浏览 1 评论 0原文

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

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

发布评论

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

评论(4

骷髅 2024-11-05 20:10:31

我们在使用 RDP 时也遇到了同样的问题。我们使用的解决方法是打开另一个远程桌面会话来连接到同一服务器:

  1. 您使用 RD 连接到服务器
  2. 从第 1 步的 RD 开始,您再次连接到服务器

这样,当您最小化甚至断开第一个 RD 会话时,第二个会话仍将处于“活动”状态。当然,您的远程桌面服务器必须支持来自同一用户的多个连接。

We had the same problem with RDP. A workaround we used was to open another remote desktop session to connect to the same server:

  1. You connect to server with RD.
  2. From RD of step 1, you connect to server once again.

This way the 2nd session will be still "active" when you minimize or even disconnect your first RD session. Of course your Remote Desktop server has to support multiple connections from the same user.

羁客 2024-11-05 20:10:31

您可能希望将当前的 RDP 会话附加到控制台。在这种情况下,即使在断开连接后,UI 仍将处于活动状态。

TSCON {sessionid | sessionname} /DEST:CONSOLE

You might want to attach your current RDP session to the CONSOLE. In such case even after disconnection the UI will be still active.

TSCON {sessionid | sessionname} /DEST:CONSOLE
情话墙 2024-11-05 20:10:31

我的夜间回归套件过去常常在本地计算机上失败,因为企业规则在 14 分钟不活动后自动锁定计算机。所以我写了一个小的 vbScript 程序,每 12 分钟按一次“PrintScreen”键,它确实解决了问题。虽然这不是在 RDP 上,但在远程计算机上执行类似的操作会有所帮助。

My nightly regression suite used to fail on my local machine because enterprise rules locked the machine automatically after 14 mins of inactivity. So I wrote a small vbScript program to press "PrintScreen" key every 12 mins and it really solved the problem. Though this was not on RDP, but executing something similar on remote machine would help.

划一舟意中人 2024-11-05 20:10:31

如果根本没有 rdp 会话,并且您仍然希望通过 AutoIt 实现自动化,则接受的答案不起作用。

他们说在这种情况下,您不应该使用 WinActivate,而应在 AutoIt 脚本中使用 ControlSend,这样它就会顺利工作。是的,这有效,我自己检查过。

The accepted answer doesn't work if there is no rdp session at all, and you still want automate it through AutoIt.

They say in this case you should not use WinActivate and use ControlSend in AutoIt scripts instead, and it would work smoothly. And yes, that works, checked it myself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文