PowerShell script to display Notification balloon and take action only works in ISE gui, not from commandline

Question:

I’ve seen a bunch of closely related posts so I know i’m not alone, but none have given me the answer I’m looking for. Apologies if this has been asked and answered and I couldn’t find it.

this script creates a custom notification area balloon, which, if clicked on is meant to open a new IE window to some URL. Works great from the PowerShell ISE GUI that I’ve been working with it in. Can’t get it to work from command-line using any of the options i’ve seen suggested in other posts. Specifically, can’t get the IE window to open. The notification appears no problem, but no IE window…?? Tried with:

  • powershell . script.ps1
  • powershell -file script.ps1
  • command
  • &

etc.

Thoughts?

My script:

Answer:

The reason why it doesn’t work in non-interactive prompts is that powershell has already finished processing when the user clicks the balloon.

You can fix that in one of two ways:

  • add a sleep(1) at the end of the script, so it doesn’t end before the user clicking the balloon; (increase the value if needed, although I tested w/ 1 sec just fine)
  • use the -noexit commandline parameter and then close powershell programatically upon the user clicking the notification or after some delay (I tested that it would launch IE with no changes to your code, didn’t bother coding the exit part.)

Source:

PowerShell script to display Notification balloon and take action only works in ISE gui, not from commandline by licensed under CC BY-SA | With most appropriate answer!

Leave a Reply