Skip to content

Instantly share code, notes, and snippets.

@rufflabs
Created May 23, 2015 13:52
Show Gist options
  • Save rufflabs/982cb4dc852ac1724033 to your computer and use it in GitHub Desktop.
Save rufflabs/982cb4dc852ac1724033 to your computer and use it in GitHub Desktop.
Displays an informational dialog popup
function Show-DialogMessage($message = 'Default message')
{
$null = [Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms');
$answer = [System.Windows.Forms.MessageBox]::Show($message, 'Informational Message',[Windows.Forms.MessageBoxButtons]::OK,[Windows.Forms.MessageBoxIcon]::Information);
return [String]$answer
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment