Skip to content

Instantly share code, notes, and snippets.

@xRyul
xRyul / toast.ps1
Created April 19, 2022 05:52 — forked from dend/toast.ps1
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)