Last active
June 15, 2016 05:18
-
-
Save timyhac/fa4630811052eac14f8b87bd240cf5e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# No title | |
[System.Windows.Forms.MessageBox]::Show("We are proceeding with next step.") | |
# With title | |
[System.Windows.Forms.MessageBox]::Show("We are proceeding with next step." , "Status") | |
# Yes/No | |
$result = [System.Windows.Forms.MessageBox]::Show('Do you wish to continue', 'Warning', 'YesNo', 'Warning') | |
if ($result -eq 'Yes') { | |
# do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment