Forked from altrive/ToastNotification_Windows10.ps1
Created
September 11, 2017 13:06
-
-
Save gpuido/2f710bafca0a06c1062d35fc5654e69a to your computer and use it in GitHub Desktop.
Windows 10 toast notification sample
This file contains hidden or 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
| $ErrorActionPreference = "Stop" | |
| $notificationTitle = "Notification: " + [DateTime]::Now.ToShortTimeString() | |
| [Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] > $null | |
| $template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent([Windows.UI.Notifications.ToastTemplateType]::ToastText01) | |
| #Convert to .NET type for XML manipuration | |
| $toastXml = [xml] $template.GetXml() | |
| $toastXml.GetElementsByTagName("text").AppendChild($toastXml.CreateTextNode($notificationTitle)) > $null | |
| #Convert back to WinRT type | |
| $xml = New-Object Windows.Data.Xml.Dom.XmlDocument | |
| $xml.LoadXml($toastXml.OuterXml) | |
| $toast = [Windows.UI.Notifications.ToastNotification]::new($xml) | |
| $toast.Tag = "PowerShell" | |
| $toast.Group = "PowerShell" | |
| $toast.ExpirationTime = [DateTimeOffset]::Now.AddMinutes(5) | |
| #$toast.SuppressPopup = $true | |
| $notifier = [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier("PowerShell") | |
| $notifier.Show($toast); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment