MsgBox.exe : Displays some text in a message-box

Note: if you are looking for VB MsgBox syntax, try this URL:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbenlr98/html/vafctMsgBox.asp
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

-n
Do 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