Skip to content

Instantly share code, notes, and snippets.

View dagrachon's full-sized avatar

dagrachon

  • germany
View GitHub Profile
@dagrachon
dagrachon / WindowsUpgradeNotification.ps1
Last active July 3, 2017 11:21 — forked from altrive/ToastNotification_Windows10.ps1
Windows 10 toast notification for WindowsUdateScript
#used in https://github.com/dagrachon/windows_update_script
$ErrorActionPreference = "Stop"
$notificationTitle = "Automatic WindowsUpdate"
$notificationText = "Windows Major Upgrades were found.`r`nPlease go to your update center and install them."
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime] > $null
$template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent([Windows.UI.Notifications.ToastTemplateType]::ToastText04)
#Convert to .NET type for XML manipuration