Change notif.xml path to config folder

pull/29/head
Romain 2022-03-14 15:49:38 +01:00 committed by GitHub
parent a4404dfb18
commit 86caa304de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ function Start-NotifTask ($Title,$Message,$MessageType,$Balise) {
if (!(Test-Path $ToastTemplateLocation)){
New-Item -ItemType Directory -Force -Path $ToastTemplateLocation
}
$ToastTemplate.Save("$ToastTemplateLocation\notif.xml")
$ToastTemplate.Save("$ToastTemplateLocation\config\notif.xml")
#Run Notify scheduled task to notify conneted users
Get-ScheduledTask -TaskName "Winget-AutoUpdate-Notify" -ErrorAction SilentlyContinue | Start-ScheduledTask -ErrorAction SilentlyContinue
@ -49,4 +49,4 @@ function Start-NotifTask ($Title,$Message,$MessageType,$Balise) {
#Wait for notification to display
Start-Sleep 3
}
}