Skip to content

Instantly share code, notes, and snippets.

@loge5
loge5 / ToastNotification_Windows10.ps1
Last active April 28, 2018 18:02 — forked from altrive/ToastNotification_Windows10.ps1
[Windows](PowerShell) toast notification sample
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True,Position=1)]
[string]$Message,
[Parameter(Mandatory=$False,Position=2)]
[string]$Wait = 0
)
Start-Sleep -s $Wait