将消息写入 RemoteSession VMWare

发布于 2024-12-11 08:03:01 字数 239 浏览 0 评论 0原文

我想向通过远程会话连接的客户端写入一条消息。我想使用 Powershell 管理单元查看 PowerCli。

有可能吗?

我的主要目标是:当我发送会话注销时,应该以弹出消息的形式通知我的客户,他将在 5 分钟后注销或类似的消息。

最好的解决方案是如果我通过 PowerCli 发送 SessionLogOff,则自动发送消息。但我发现4.6版本不支持这个功能。

所以我想用我自己的脚本手动执行此操作。

I would like to write a message to a client who is connected via a remoteSession. I would like to use the Powershell Snap-In View PowerCli.

Is there a possibility?

My main target is: When I send a session logOff my Client should be informed in form of a pop up message that he will loged off after 5minutes or something like that.

The best solution would be to send a message automatically if I Send a SessionLogOff via PowerCli. But I found out that doesn't work with the Version 4.6.

So I want to do that manually with my own script.

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

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

发布评论

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

评论(1

盛装女皇 2024-12-18 08:03:01

start-process "cmd.exe" "/c C:\msg.bat"

.bat 内容将是

msg.exe /SERVER:fullcomputername yourusername HelloWorld

如果您不知道用户名,您可以使用查询会话 /server: fullcomputername 并处理您返回的用户名。

Something like

start-process "cmd.exe" "/c C:\msg.bat"

.bat contents would be

msg.exe /SERVER:fullcomputername theirusername HelloWorld

If you don't know the username you can use query session /server:fullcomputername and process the usernames you get back.

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