I\'m trying to take user input and before proceeding I would like get a message on screen and than a confirmation, whether user wants to proceed or not. I\'m using the follo
I prefer a popup.
$shell = new-object -comobject "WScript.Shell" $choice = $shell.popup("Insert question here",0,"Popup window title",4+32)
If $choice equals 6, the answer was Yes If $choice equals 7, the answer was No