Como uso o Msg.exe para enviar mensagens no Windows 7?

1

Eu tenho uma pergunta sobre o uso de msg em arquivos em lote, para que eu possa enviar mensagens para usuários específicos no domínio da minha organização.

Eu decidi usar net send e percebi que só funcionaria no Windows XP. Usamos o Windows 7 e descobri que apenas msg funcionaria.

O código até agora:

@echo off
title MESSENGER
cls
echo ___ _  __           _ ___ _        
echo  ) / ) )_)    )\ ) / ) ) / ' )_)
echo ( (_/ /      (  ( (_/ ( (_. ( (
echo       ___  __   __   _        _   ___ __                                      
echo  )\/) )_  (_ ' (_ ' /_) )\ ) / _  )_  )_)                                     
echo (  ( (__ .__) .__) / / (  ( (__/ (__ / \                                                                                                                                                   
ping 1.1.1.1 -n 1 -w 1000 >NUL                                                                                                              
cls
:START
title Top Notch MessEnger!
cls
echo.
echo ----------------------------------------------------------------
echo TOP NOTCH MESSENGER!
echo ----------------------------------------------------------------
echo The usual children. Send them a message today!
echo.
set /p u=Enter username here: 
set /p m=Enter message here: 
msg  %u% %m%
pause
cls
title MESSAGE SENT
cls
echo MESSAGE SENT
pause
goto :START

Agora, isso funciona, mas SOMENTE pode ser enviado para o usuário conectado nessa mesma máquina, o que é frustrante. No momento, estou usando este site para ajudar.

Como faço para enviar uma mensagem para um usuário específico em um domínio do Windows 7 chamado Escola?

    
por unusedaccount12424827643124 02.12.2017 / 12:17

1 resposta

1

Como faço para enviar uma mensagem para um usuário específico em um domínio do Windows 7?

Sending and receiving Net Send messages in Windows 8/7/Vista

In order to send or receive Net Send messages on Windows versions that don't support Net Send command (Windows 7, Vista, ME, 95, 98) you can use third party software products. We suggest using Winsent Messenger, Winsent Innocenti and Sent utility.

Winsent Messenger is a messenger for LAN, compatible with net send. Winsent Innocenti is a pared-down version of the Winsent Messenger, only allowing message receiving. Sent is a console utility intended for sending messages from command line.

The following are step by step instructions on how to add NET SEND support to Windows 7:

  1. Download and install Winsent Messenger or Winsent Innocenti on all computers that should be used for message receiving (Go to the download page).

  2. Download and install Sent utility and Winsent Messenger on all computers that should be used for message sending (Go to the download page)

  3. Change Windows system settings according to the requirements on all the computer where you installed Winsent Messenger, Winsent Innocenti and Sent.

Now you can send and receive NET SEND messages on Windows 7. If you need to send the message from command line then type the sent command in a command prompt, otherwise use Winsent Messenger.

Fonte Como enviar e receber mensagens de envio de rede no Windows 8/7 / Vista

    
por 03.12.2017 / 14:18