From time to time I find myself needing a notification tool. Normally a simple show messagebox will suffice, however the trouble with that is that is blocking until someone clicks that OK button. I have seen workarounds that uses wscript and other things, however that is just meh.
There is a function in my general purpose repro on BitBucket that is called Show-Message. Here is the function:
This file contains 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
function Show-Message | |
{ | |
[cmdletbinding()] | |
Param( | |
[Parameter(ValueFromPipeLine)] | |
$Message | |
, | |
[Parameter(ParameterSetName="Win10")] | |
$DisplayDuration = 10 | |
, | |
[Parameter(ParameterSetName="Win10")] | |
[switch]$NotificationArea | |
, | |
[Parameter(ParameterSetName="Win10")] | |
[string]$Tag = "Powershell" | |
, | |
[Parameter(ParameterSetName="Win10")] | |
[string]$Group = "Powershell" | |
) | |
Begin | |
{ | |
if ($NotificationArea) | |
{ | |
try | |
{ | |
$null = [Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] | |
$template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent([Windows.UI.Notifications.ToastTemplateType]::ToastText01) | |
} | |
catch | |
{ | |
$ex = $_.Exception | |
Write-Warning -Message "Notification area not supported, $($ex.Message)" | |
$null = $PSBoundParameters.Remove("NotificationArea") | |
$NotificationArea = $false | |
} | |
} | |
} | |
Process | |
{ | |
if (-not $NotificationArea) | |
{ | |
$null = [System.Windows.Forms.Messagebox]::Show($Message) | |
} | |
if ($NotificationArea) | |
{ | |
$toastXml = [xml]$template.GetXml() | |
$null = $toastXml.GetElementsByTagName("text").AppendChild($toastXml.CreateTextNode($Message)) | |
#Convert back to WinRT type | |
$xml = New-Object -TypeName Windows.Data.Xml.Dom.XmlDocument | |
$xml.LoadXml($toastXml.OuterXml) | |
$toast = [Windows.UI.Notifications.ToastNotification]::new($xml) | |
$toast.Tag = $Tag | |
$toast.Group = $Group | |
$toast.ExpirationTime = [DateTimeOffset]::Now.AddSeconds($DisplayDuration) | |
$notifier = [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier("Powershell") | |
$notifier.Show($toast) | |
} | |
} | |
} |
In addition the function will fallback to a regular good old MessageBox if the Windows.UI.Notification namespace is not available. Please note that in those scenarios, the function will block execution until the OK button is clicked.
Here is how a notification looks like:
You can also control for how long the notification should be shown to the user with the DisplayDuration parameter.
If you simply want to display a regular MessageBox, just run Show-Message -Message "Test message" and it will show you a message box:
That is it.
Tore
Comments
Post a Comment