tldr/pages/windows/msg.md

25 lines
593 B
Markdown
Raw Normal View History

2018-07-11 16:23:08 +01:00
# msg
> Send a message to a specific user or session.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/msg>.
2018-07-11 16:23:08 +01:00
- Send a message to a specified user or session:
`msg {{username|session_name|session_id}} {{message}}`
- Send a message from `stdin`:
2018-07-11 16:23:08 +01:00
`echo "{{message}}" | msg {{username|session_name|session_id}}`
- Send a message to a specific server:
`msg /server:{{server_name}} {{username|session_name|session_id}}`
- Send a message to all users of the current machine:
`msg *`
- Set a delay in seconds for a message:
`msg /time:{{10}}`