How to Display a Custom Message in Windows 10 “Notification/Alert” Slide-Out Box on the right side of the Screen
In Windows 10, whenever a Chrome extension is disabled, enabled, or updated, or Windows 10 has updated it’s OS or apps, or a System Restart is required, etc., Windows will notify you by revealing a “Notification” box (in a slide-out fashion) from the right side of the screen (see attached pic below).
ISSUE:
I want to mimic that same behavior, on demand, but, with my own custom messages (text). Is there a way to send text to that Notification box, and have the box display itself on demand using AC? I don’t know how the “Chrome Extensions” accomplish this task, but I want to do the same thing if at all possible.
Any assistance would be greatly appreciated,
Thanks in advance

let title = "Notification title"
let content = "Notification content"
await ACtl.runCommand(`powershell -executionpolicy bypass -File .\\showNotif.ps1 "${title}" "${content}"`)