$InputObject.ShowMessageBox
Description
Section titled “Description”Shows a MessageBox to the logged on user. If a MessageBox is already shown, it will be replaced.
Syntax
Section titled “Syntax”:ps: [string] $InputObject.ShowMessageBox(caption, text, buttons, default, iconStyle, timeOut aSync)
Considerations for Æ Ø Å
Section titled “Considerations for Æ Ø Å”There are no specific considerations for the use of special characters (unlike Sys_BreakThruMsgBox)
Parameters
Section titled “Parameters”sCaption (String)
Title of the messagebox
sText (String)
Text in the messagebox
sButtons (String)
Specifies button-type. Valid values: ‘OK’, ‘YESNO’, ‘YESNOCANCEL’, ‘ABORTRETRYIGNORE’, ‘OKCANCEL’ and ‘RETRYCANCEL’
sDefault (String)
Specifies the default button in messagebox. Valid values: ‘ONE’, ‘TWO’ or ‘THREE’
sIconStyle (String)
Used Icon-style in messagebox. Valid values: ‘STOP’, ‘QUESTION’, ‘EXCLAMATION’, ‘INFORMATION’
iTimeOut (integer)
This is the timeout of the messagebox shown. If the user has not clicked any of the buttons withing the timeout, the default button is returned
bASync (Boolean)
Specifies if the messagebox displays asynchronously($true) or waits for the user to respond($false)
Return value
Section titled “Return value”:ps: Result will be returned from the function. Valid answers are: ‘OK’, ‘YES’, ‘NO’, ‘ABORT’, ‘RETRY’, ‘CANCEL’ and ‘IGNORE’
Example:
Section titled “Example:”:ps: PowerShell
Section titled “:ps: PowerShell” $cs.Job_WriteLog("Messagebox:","Showing MessageBox") $messageBoxResponse = $InputObject.ShowMessageBox("MessageBox title", "This is a test messageBox from a PowerPack (æøå). Please click one of the three buttons below", "YESNOCANCEL", "TWO", "Info", 180, $false) $cs.Job_WriteLog("Install:","response: $messageBoxResponse")Related functions
Section titled “Related functions”Sys_BreakthruMsgbox $InputObject.CloseMessageBox