是否存在"网络发送"或"网络发送"?



我在很多网站上读到,您可以使用命令net sendnetsend通过网络发送"消息"。我找到了一个简单的脚本作为"信使":

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

现在,netsend显然不存在,net不包含参数send。有谁知道这应该如何工作/或者这只是一个笑话?

net send 不再存在,它自 vista 以来不再使用,但还有其他可能性可以实现消息传递。

https://superuser.com/questions/38967/how-do-i-get-the-net-send-messenger-service-working-on-windows-7

看这里。

有一个

相当不错的工具叫做IDERI,请注意 - 除其他功能外 - 是网络发送的强大替代方案。

看看吧: http://note.ideri.com/

最新更新