Adventures in Powershell. These posts have been created as a record of the successful powershell commands I have used.
Article on how to produce pop-ups in powershell.
https://powershell.org/2013.04/powershell-popup
$wshell = New-Object -ComObject Wscript.Shell -ErrorAction Stop$wshell.Popup("Are you looking at me?",0,"Hey!",48+4)