20 lines
1.1 KiB
PowerShell
20 lines
1.1 KiB
PowerShell
# Define the toast notification content
|
|
# Group defines the notification grouping (eg. category). This allows for multiple use cases, which all align within the same group.
|
|
# Title defines the heading of the Toast Notification.
|
|
# Message defines the contents of the Toast Notification
|
|
|
|
$Group = "This is a Notification!"
|
|
$Title = "This is the Title!"
|
|
$Message = "This is the Message!"
|
|
|
|
# Create the toast notification
|
|
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] | Out-Null
|
|
$template = [Windows.UI.Notifications.ToastTemplateType]::ToastText02
|
|
$toastXml = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent($template)
|
|
$toastTextElements = $toastXml.GetElementsByTagName("text")
|
|
$toastTextElements.Item(0).AppendChild($toastXml.CreateTextNode($Title)) | Out-Null
|
|
$toastTextElements.Item(1).AppendChild($toastXml.CreateTextNode($Message)) | Out-Null
|
|
$toast = [Windows.UI.Notifications.ToastNotification]::new($toastXml)
|
|
$notifier = [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier($Group)
|
|
$notifier.Show($toast)
|