While doing something, I thought to add some alerting music. Just to notify that script has completed execution. Just for fun and in effort to do everything in Powershell, I wrote the below :
$sound.SoundLocation="c:\WINDOWS\Media\notify.wav" $sound.Play() $sound.Stop()You may use this script when you have to check something related with Sound-Card or it may be useful to give some interactive help. You may run any of the WAV file with this.
Hope you liked this article.