function Show-WinUtilMessage { <# .SYNOPSIS Shows a WinUtil message box and returns the selected result. #> param ( [string]$Message, [string]$Title = "Winutil", $Button = "OK", $Icon = "Information" ) [System.Windows.MessageBox]::Show($Message, $Title, $Button, $Icon) }