How to send local network messages in Windows

1

How I could exchange messages with another computer (both Windows system) on a local network, without servers.

Could it be possible using the command prompt?

    
asked by anonymous 23.06.2015 / 00:44

1 answer

4

Old versions of Windows used the net send .

Syntax:

net send recepient_name text_of_the_message

Command:

net send windows2k texto da mensagem

If you're using a version above Vista, try the msg .

Syntax:

msg {Usuario} /SERVER:{Nome do servidor/PC} /TIME:{segundos} /v /w /? Texto da mensagem

msg {Nome da sessão} /SERVER:{Nome do servidor/PC} /TIME:{segundos} /v /w /? Texto da mensagem

msg {ID da Sessão} /SERVER:{Nome do servidor/PC} /TIME:{segundos} /v /w /? Texto da mensagem

msg @{Nome do arquivo} /SERVER:{Nome do servidor/PC} /TIME:{segundos} /v /w /? Texto da mensagem

msg * /SERVER:{nome do servidor/pc} /TIME:seconds /v /w /? Texto da mensagem

Commands:

Enviar mensagem com o "Lanche?" para usuário RON:
msg RON Lanche?

Enviar mensagem para todos os usuários que estão armazenados no arquivo USERS:
msg @users Por favor realize o logout em 10min o servidor entrará em manutenção

Enviar o conteúdo do arquivo message.txt e envia-lo para PAULO:
msg PAULO < message.txt

Enviar mensagem para todos os usuários logados:
msg * Por favor, salve seu trabalho. Servidor entrará em manutenção!
    
23.06.2015 / 01:57