Skip to content

Instantly share code, notes, and snippets.

@sredna
sredna / toast.ps1
Created August 8, 2021 00:31 — forked from dend/toast.ps1
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)