2

我是一家公司的服务台,我们的 VPN 上有一些计算机。我们有时必须使用 Windows 远程桌面登录这些计算机。(主要是 Windows XP,但有些是 Windows 7)

当我们远程进入 Windows 时,计算机/会话被锁定

我希望能够在他们的计算机上出现一个弹出窗口,说他们可以重新登录。

我使用 2 个命令行工具来发出远程命令:psexecnircmd

nircmd很有用,因为它具有用于弹出的命令行选项,但它会在会话中弹出,而不是在“计算机锁定屏幕”上。

我玩过本地安全策略,它会在他们第一次登录时显示一条消息,但在会话锁定时不会显示。

它确实具有在会话锁定时显示用户名的选项,因此它可以在锁定会话期间以某种方式显示某些内容。

4

1 回答 1

0

@npocmaka Thanks

I ended up using msg.exe but because of restrictions on our company's network I used a combination of psexec and msg

msg server:IPADDRESS /v "message"

didn't work so I used

psexec \IPADDRESS -u username -p password msg /server:IPADDRESS /v "message"

but in order for it to work I had to run

psexec \IPADDRESS -u username -p password reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v AllowRemoteRPC /t REG_DWORD /d 1 /f

on the remote computer. I got the reg command from another post in StackOverflow actually!

于 2014-05-09T14:27:27.730 回答