Skip to content

Instantly share code, notes, and snippets.

@topkecleon
topkecleon / toast.ps1
Last active March 2, 2023 20:47 — forked from dend/toast.ps1
Toast Notification in PowerShell
# Derived from https://gist.github.com/dend/5ae8a70678e3a35d02ecd39c12f99110
# Added priority parameter.
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText,