|
|
发表于 2025-7-10 01:53:44
|
显示全部楼层
香港特别行政区*
|
$bodyText = 'A single string wrapped across a maximum of three lines of text.' ; $ToastText01 = [Windows.UI.Notifications.ToastTemplateType, Windows.UI.Notifications, ContentType = WindowsRuntime]::ToastText01 ; $TemplateContent = [Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime]::GetTemplateContent($ToastText01) ; $TemplateContent.SelectSingleNode('//text[@id="1"]').InnerText = $bodyText ; $AppId = '{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\WindowsPowerShell\v1.0\powershell.exe' ; [Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier($AppId).Show($TemplateContent) ; |
|