Skip to content

Commit

Permalink
Add AppId parameter to New-BurntToastNotification cmdlet.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedarbaum committed Nov 8, 2020
1 parent ffe568b commit 3023790
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BurntToast/Public/New-BurntToastNotification.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@

#TODO: [ValidateScript({ Test-ToastImage -Path $_ })]

# Specifies the AppId of the 'application' or process that spawned the toast notification.
[string] $AppId = $Script:Config.AppId,

# Specifies the path to an image that will override the default image displayed with a Toast Notification.
[String] $AppLogo,

Expand Down Expand Up @@ -250,7 +253,7 @@

$ToastSplat = @{
Content = $Content
AppId = $Script:Config.AppId
AppId = $AppId
}

if ($UniqueIdentifier) {
Expand Down

0 comments on commit 3023790

Please sign in to comment.