我需要通过根据需要发送警报或警告来分别与每个客户端进行通信。我在 WINXP 环境中工作。我需要从 winxp 客户端工作站向所有人发送消息。我尝试使用 net send,但根据安全策略,这里 messanger 服务被禁用了。所以请帮帮我,有没有办法向所有客户端发送消息。
答案1
如果您不想使用 Messenger 服务,则需要某种工具来发送消息。如果您在 Google 上搜索“桌面警报软件”,您会找到很多第三方解决方案。
答案2
为什么您不激活该服务以便使用 NET SEND?
答案3
答案4
使用 pstools 运行脚本来重新启用信使服务,然后使用 netsend,然后让脚本关闭该服务。
从 sysinternals 下载 pstools 从 penguin bytes 下载 EZ-execute
制作 3 个批处理文件 psservice \%computername% start messenger net send * Hello World psservice \%computername% stop messenger
使用 EZ-Execute 针对域运行第一个脚本 使用第二个脚本将消息发送到域 使用 EZ-Execute 针对域运行第三个脚本
如果您要定期执行此操作,也可以使用 psexec 将所有内容放入一个脚本中。
http://ss64.com/nt/psservice.html http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-u/net_send.mspx?mfr=true