Summary: Use Windows PowerShell to easily create a pop-up message.
How can I use Windows PowerShell to create a pop-up message?
Use Out-GridView, and pipe your message string to it, for example:
"popup message" | Out-GridView -Title "message box"
Summary: Use Windows PowerShell to easily create a pop-up message.
How can I use Windows PowerShell to create a pop-up message?
Use Out-GridView, and pipe your message string to it, for example:
"popup message" | Out-GridView -Title "message box"