wingetautoupdate/winget-update/winget-notify.ps1

21 lines
851 B
PowerShell
Raw Normal View History

2022-01-16 17:05:33 +00:00
#Send Notif Script
#get xml notif config
[xml]$NotifConf = Get-Content "$PSScriptRoot\notif.xml" -Encoding UTF8
2022-01-16 17:05:33 +00:00
if (!($NotifConf)) {break}
#Load Assemblies
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] | Out-Null
[Windows.Data.Xml.Dom.XmlDocument, Windows.Data.Xml.Dom.XmlDocument, ContentType = WindowsRuntime] | Out-Null
#Prepare XML
$ToastXml = [Windows.Data.Xml.Dom.XmlDocument]::New()
$ToastXml.LoadXml($NotifConf.OuterXml)
#Specify Launcher App ID
$LauncherID = "Windows.SystemToast.Winget.Notification"
#Prepare and Create Toast
$ToastMessage = [Windows.UI.Notifications.ToastNotification]::New($ToastXML)
$ToastMessage.Tag = $NotifConf.toast.tag
[Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier($LauncherID).Show($ToastMessage)