How to send local network messages on Windows

Asked

Viewed 14,553 times

1

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

It would be possible using the command prompt?

1 answer

4


Older versions of Windows used send net.

Syntax:

net send recepient_name text_of_the_message

Commando:

net send windows2k texto da mensagem

If you’re using an above version of Vista, try 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!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.