Skip to content

Instantly share code, notes, and snippets.

View cyntheticfox's full-sized avatar

Cynthia Fox cyntheticfox

View GitHub Profile
@cyntheticfox
cyntheticfox / toast.ps1
Created February 3, 2023 16:06 — forked from dend/toast.ps1
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)