Skip to content

Instantly share code, notes, and snippets.

View mkostechuk's full-sized avatar
🐶
Such magic, much wow

Mikhail mkostechuk

🐶
Such magic, much wow
  • Moscow / Singapore
View GitHub Profile
@mkostechuk
mkostechuk / New-DotNetToast.ps1
Created December 2, 2020 05:02 — forked from steviecoaster/New-DotNetToast.ps1
Create a WIndows 10 Toast notification using .Net
Function New-DotNetToast {
[cmdletBinding()]
Param(
[Parameter(Mandatory, Position = 0)]
[String]
$Title,
[Parameter(Mandatory,Position = 1)]
[String]
$Message,