Windows 10

Batch File To Display Popup Message in Windows 10

In this tutorial, we are going to see how to write a batch file to display a popup message in Windows 10. You can use the MSG command which allows you to send a message to a user on a remote Desktop Session Host.
 

Syntax:
msg *  [/time:<seconds>] [<message>]

 

 

Example 1:

To send a message titled, “We will meet at 1:00 pm today”, type:

msg *  We will meet at 1:00 pm today


 

Example 2:

To send the message to all users, with an additional delay for receiving the message (e.g., 10 seconds), type :

msg * /time:10 We will meet at 1:00 pm today

 

 

Batch File To Display Popup Message in Windows 10
@Echo off

msg *  We will meet at 1:00 pm today


 
That’s All!
 

Leave a Reply

Your email address will not be published. Required fields are marked *