From 66657dc4b55ad9b6922ff5459304325a526fa23d Mon Sep 17 00:00:00 2001 From: Romain <96626929+Romanitho@users.noreply.github.com> Date: Fri, 13 Sep 2024 22:16:46 +0200 Subject: [PATCH] Edit AppID for notif --- Sources/Winget-AutoUpdate/Winget-Notify.ps1 | 2 +- Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Winget-AutoUpdate/Winget-Notify.ps1 b/Sources/Winget-AutoUpdate/Winget-Notify.ps1 index de22ef7..69ee5e6 100644 --- a/Sources/Winget-AutoUpdate/Winget-Notify.ps1 +++ b/Sources/Winget-AutoUpdate/Winget-Notify.ps1 @@ -16,7 +16,7 @@ $ToastXml = [Windows.Data.Xml.Dom.XmlDocument]::New() $ToastXml.LoadXml($NotifConf.OuterXml) #Specify Launcher App ID -$LauncherID = "Windows.SystemToast.Winget.Notification" +$LauncherID = "Windows.SystemToast.WAU.Notification" #Prepare and Create Toast $ToastMessage = [Windows.UI.Notifications.ToastNotification]::New($ToastXML) diff --git a/Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 b/Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 index 4f5ec01..02c9d04 100644 --- a/Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 +++ b/Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 @@ -155,7 +155,7 @@ function Start-NotifTask { $ToastXml.LoadXml($ToastTemplate.OuterXml) #Specify Launcher App ID - $LauncherID = "Windows.SystemToast.Winget.Notification" + $LauncherID = "Windows.SystemToast.WAU.Notification" #Prepare and Create Toast $ToastMessage = [Windows.UI.Notifications.ToastNotification]::New($ToastXml)