Skip to content

Instantly share code, notes, and snippets.

@Windos
Created June 20, 2019 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Windos/580f8392e1e7aa591ffdb4db14c83e0f to your computer and use it in GitHub Desktop.
Save Windos/580f8392e1e7aa591ffdb4db14c83e0f to your computer and use it in GitHub Desktop.
$Time = Get-Date -Format t
$Text1 = New-BTText -Content 'Report Generated'
$Text2 = New-BTText -Content "Completed at $Time"
$Audio1 = New-BTAudio -Source 'ms-winsoundevent:Notification.IM'
$Binding1 = New-BTBinding -Children $Text1, $Text2
$Visual1 = New-BTVisual -BindingGeneric $Binding1
$Button1 = New-BTButton -Content 'Open Report' -Arguments 'C:\Fake\Report\Location.csv'
$Action1 = New-BTAction -Buttons $Button1
$Content1 = New-BTContent -Visual $Visual1 -Audio $Audio1 -Actions $Action1
Submit-BTNotification -Content $Content1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment