MsgBox.exe : Displays some text in a message-box
msgbox uses the following syntax:
msgbox [-t:"caption text"] -i:icon]
[-n] [-f:filename] "Text to display"
Parameters
-t:caption
Set the caption of the message-box
-i:icon
Set the icon to be displayed. Possible values can be error,
warning, info, or question
-f:filename
Displays the content of th text file filename
-nDo not display the message-box on top of the other windows..
"Text to display"
Text to be displayed in the message-box. Special characters
\n and \t are expanded. This string must be quoted.
Notes
-
Character \n is expanded as a CR/LF pair.
-
Character \t is expanded as a tab character.