Sometimes while a powershell script is running you want to show a MessageBox with a information or warning to the user. In Windows Powershell no Commandlet exists to show a Message Box.
Nevertheless it is possible by using the .NET Windows.Forms.MessageBox class:-).
First of all load the assembly.
1 2 | # Load assembly [System.Reflection.Assembly] ::LoadWithPartialName( "System.Windows.Forms" ) |
To show the messagebox call the static function show(“Message Text”)
Continue reading Powershell: How to show a message box