internal/Show-Notification.ps1

function Show-Notification (
    $title = "dbatools update",
    $text = "Version $galleryversion is now available"
)
{
    # ensure the dbatools 'app' exists in registry so that it doesn't immediately disappear from Action Center
    $regpath = 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings'
    $appid = "dbatools"
    
    if (!(Test-Path -Path "$regpath\$appid"))
    {
        Write-Verbose "Adding required registry entry at $("$regpath\$appid")"
        $null = New-Item -Path $regpath -Name $appid
        $null = New-ItemProperty -Path "$regpath\$appid" -Name 'ShowInActionCenter' -Value 1 -PropertyType 'DWORD'
    }
    
    $null = [Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime]
    $templatetype = [Windows.UI.Notifications.ToastTemplateType]::ToastImageAndText02
    $template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent($templatetype)
    
    $toastXml = [xml]$template.GetXml()
    $toastTextElements = $toastXml.GetElementsByTagName("text")
    
    $null = $toastTextElements[0].AppendChild($toastXml.CreateTextNode($title))
    $null = $toastTextElements[1].AppendChild($toastXml.CreateTextNode($text))
    
    # make it last longer
    #$singletoast = $toastXml.SelectSingleNode("/toast")
    #$singletoast.SetAttribute("duration", "long")
    
    $image = $toastXml.GetElementsByTagName("image")
    $base = $module.ModuleBase
    
    $image.setAttribute("src", "$base\bin\thor.png")
    $image.setAttribute("alt", "thor")
    
    $xml = New-Object Windows.Data.Xml.Dom.XmlDocument
    $xml.LoadXml($toastXml.OuterXml)
    
    $toast = [Windows.UI.Notifications.ToastNotification]::new($xml)
    $toast.Tag = "PowerShell"
    $toast.Group = "dbatools"
    $notifier = [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier("dbatools").Show($toast)
}