tags:

views:

16

answers:

1

I have a following LOC in my ps1 script which displays a message with an OK button.

[Windows.Forms.MessageBox]::Show($Message, $Title, [Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Information, [System.Windows.Forms.MessageBoxDefaultButton]::Button1, [System.Windows.Forms.MessageBoxOptions]::DefaultDesktopOnly) | Out-Null   

I want to perform some operation only if the user clicks the OK button something like:

if (Button1.pressed())
{
   #perform some operations
}

How do I check if the button is clicked?

Thanks

+2  A: 

I found a simple explanation here.

Basically, you compare the Show function's return value with [Windows.Forms.DialogResult]::OK

Timbo
Thanks. That worked just fine. :)
baltusaj