powershell脚本创建Windows 10通知,弹出后它会消失

时间:2016-09-06 08:56:32

标签: windows powershell notifications windows-10

以下powershell脚本成功创建了一个通知,但是在小弹出窗口缩回之后它没有显示在通知中心,是否有任何方法将其留在通知中心,直到用户解除它为止?

param([String]$prodName)    
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] > $null
[Windows.UI.Notifications.ToastNotification, Windows.UI.Notifications, ContentType = WindowsRuntime] > $null
[Windows.Data.Xml.Dom.XmlDocument, Windows.Data.Xml.Dom.XmlDocument, ContentType = WindowsRuntime] > $null

$ToastTemplate = '
<toast launch="app-defined-string">
    <visual>
        <binding template="ToastGeneric">
            <text>'+$prodName+'</text>
        </binding>
    </visual>
</toast>'

Write-Output $ToastTemplate;

$currTime = (Get-Date).AddSeconds(10);
"currTime : " + $currTime

$xml = New-Object Windows.Data.Xml.Dom.XmlDocument
$xml.LoadXml($toastXml.OuterXml)

$schedNotification = New-Object Windows.UI.Notifications.ToastNotification($xml)
$schedNotification.SuppressPopup = $True
$notifier = [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier($prodName)
$notifier.Show($schedNotification)

$schedNotification = New-Object Windows.UI.Notifications.ScheduledToastNotification($xml, $currTime)
$notifier.AddToSchedule($schedNotification)

1 个答案:

答案 0 :(得分:0)

如果您按照以下方式显示通知:

CreateToastNotifier("PowerShellAppId")

然后在“设置\系统\通知和操作”中,应注册名为“PowerShellAppId”的新应用。

编辑它,然后选择“在操作中心显示通知”选项。如果再次运行脚本,则消息应留在通知面板中。

在您的示例中,您有$prodName作为AppID。因此,每次使用不同的prodName运行脚本时,Windows都会将其注册为单独的条目,并且您必须再次设置注册表标志(“在操作中心显示通知”)。

您可以使用PowerShell执行此操作:

Set-ItemProperty "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\$prodName" -Name "ShowInActionCenter" -Type Dword -Value "1"

考虑使用常量应用名称,例如NotificationManager来简化事情。