Windows 10 – Send Notification from Command Line

command linenotificationswindowswindows 10

I'd like to create/send native Windows notifications from the command-line as part of a few automated tasks that I have set up, both on my local machine and for similar tasks on my home server. Both computers run Windows 10, and are on the same network.

I'm looking to receive the notifications from both computers in the action centre on my main computer.

Is there a command-line tool I can use to accomplish this?

Best Answer

Another way is the built in MSG.exe command that has been there since Vista. From a command prompt there the following:

msg /server:poseidon daniel "Please contact help desk immediately!"

Server is the name of computer you are sending the message to and daniel is a valid user name of the person using that computer. Fast and simple without any extra downloads.

Related Question