1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-24 00:02:09 +02:00
tldr/pages/windows/msg.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

24 lines
595 B
Markdown

# msg
> Send a message to a specific user or session.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/msg>.
- Send a message to a specified user or session:
`msg {{username|session_name|session_id}} {{message}}`
- Send a message from stdin:
`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:{{seconds}}`