2018-07-11 16:23:08 +01:00
|
|
|
# msg
|
|
|
|
|
2024-02-14 20:25:13 +00:00
|
|
|
> Send a message to a user or session.
|
2022-10-04 16:06:23 +01:00
|
|
|
> 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}}`
|
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- 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:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`msg /time:{{10}}`
|