ToastIT
April 1, 2018

Crouton #6 - Dance to Your Own Beat

Posted on April 1, 2018  •  3 minutes  • 490 words

BurntToast is long overdue an update (sorry!) and right alongside that is the project’s need for better documentation.

I recently got a tweet about how to get a toast to play custom sound. I really like getting messages like this for two reasons: it gives me a glimpse into how people are using the module and it also focuses my documentation efforts on something that might actually be useful.

Take off the Training Wheels

The natural first steps for someone creating toast notifications is the New-BurntToastNotification function. This function is meant to be a short runway for getting off the ground, it exposes enough customizability to tailor your own basic notifications. It also has enough default values that you can run the function raw and get something on screen.

Behind the scenes, there are 15 other functions available to create your preferred flavor of toast.

Unfortunately, this is an all or nothing switch. You can’t use these 15 “advanced” functions alongside the “basic” one, and vice versa.

The Basics of Going Advanced

The best way to get your head around this switch is to see it in practice. The default toast from New-BurntToastNotification looks like this:

To replicate this with the advanced function is somewhat more involved:

$Text1 = New-BTText -Content 'Default Notification'
$ImagePath = Join-Path -Path (Get-Module BurntToast -ListAvailable).ModuleBase -ChildPath 'Images\BurntToast.png'
$Image1 = New-BTImage -Source $ImagePath -AppLogoOverride -Crop Circle
$Audio1 = New-BTAudio -Source 'ms-winsoundevent:Notification.Default'

$Binding1 = New-BTBinding -Children $Text1 -AppLogoOverride $Image1
$Visual1 = New-BTVisual -BindingGeneric $Binding1
$Content1 = New-BTContent -Visual $Visual1 -Audio $audio1

Submit-BTNotification -Content $Content1

Yes, there’s a lot going on there, especially compared to the basic function. I’ll go over more of those commands another day and try my best to focus the rest of this post on the original tweet.

This Song Is My Jam

Luckily, switching to your own audio file is pretty simple, once you’re already using the advanced functions. Do drill down on that, if you take the previous audio component:

$Audio1 = New-BTAudio -Source 'ms-winsoundevent:Notification.Default'

Instead of a Source, you want to specify a Path. This path only supports a set of common file extensions (check the help), though you’d have to work pretty hard to be using something that’s not supported. An example of this in action, is:

$Audio1 = New-BTAudio -Path 'C:\Music\FavSong.mp3'

Closing Thoughts

That’s really all there is to getting toasts to play custom sounds. The biggest hurdle really is just switching over from New-BurntToastNotification. Once you’ve made that change, the rest is simple.

If you’re doing something interesting with BurntToast, or you’re figuring out how to do something with it, let me know in the comments below or over on Twitter .

Also, remember that if you’re looking for PowerShell help , you can find it on Twitter using #PSHelp !

comments powered by Disqus
Follow me