PowerShell/docs/show-notification.md

100 lines
2.7 KiB
Markdown
Raw Normal View History

2024-01-25 13:37:12 +01:00
Script: *show-notification.ps1*
========================
2022-11-17 19:46:02 +01:00
This PowerShell script shows a toast-message notification for the Windows 10 Notification Center.
2023-07-29 10:04:38 +02:00
Parameters
----------
2022-11-17 19:46:02 +01:00
```powershell
2024-05-19 10:25:56 +02:00
PS> ./show-notification.ps1 [[-text] <String>] [[-title] <String>] [[-Duration] <Int32>] [<CommonParameters>]
2022-11-17 19:46:02 +01:00
2024-05-19 10:25:56 +02:00
-text <String>
Specifies the text to show ('Hello World' by default)
2022-11-17 19:46:02 +01:00
Required? false
Position? 1
Default value Hello World
Accept pipeline input? false
Accept wildcard characters? false
2024-05-19 10:25:56 +02:00
-title <String>
Specifies the title to show ('NOTE' by default)
2022-11-17 19:46:02 +01:00
Required? false
Position? 2
Default value NOTE
Accept pipeline input? false
Accept wildcard characters? false
-Duration <Int32>
2024-05-19 10:25:56 +02:00
Specifies the view duration in milliseconds (5000 by default)
2022-11-17 19:46:02 +01:00
Required? false
Position? 3
Default value 5000
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2022-11-17 19:46:02 +01:00
```powershell
2024-05-19 10:25:56 +02:00
PS> ./show-notification
2022-11-17 19:46:02 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2023-07-29 10:04:38 +02:00
Related Links
-------------
2022-11-17 19:46:02 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
2023-05-26 12:20:18 +02:00
Shows a notification
2022-11-17 20:02:26 +01:00
.DESCRIPTION
2023-05-26 12:20:18 +02:00
This PowerShell script shows a toast-message notification for the Windows 10 Notification Center.
2024-05-19 10:25:56 +02:00
.PARAMETER text
Specifies the text to show ('Hello World' by default)
.PARAMETER title
Specifies the title to show ('NOTE' by default)
.PARAMETER duration
Specifies the view duration in milliseconds (5000 by default)
2022-11-17 20:02:26 +01:00
.EXAMPLE
2024-05-19 10:25:56 +02:00
PS> ./show-notification
2022-11-17 20:02:26 +01:00
.LINK
2023-05-26 12:20:18 +02:00
https://github.com/fleschutz/PowerShell
2022-11-17 20:02:26 +01:00
.NOTES
2023-05-26 12:20:18 +02:00
Author: Markus Fleschutz | License: CC0
2022-11-17 20:02:26 +01:00
#>
2024-05-19 10:25:56 +02:00
param([string]$text = "Hello World", [string]$title = "NOTE", [int]$Duration = 5000)
2022-11-17 20:02:26 +01:00
try {
Add-Type -AssemblyName System.Windows.Forms
$global:balloon = New-Object System.Windows.Forms.NotifyIcon
$path = (Get-Process -id $pid).Path
$balloon.Icon = [System.Drawing.Icon]::ExtractAssociatedIcon($path)
$balloon.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Info
2024-05-19 10:25:56 +02:00
$balloon.BalloonTipText = $text
$balloon.BalloonTipTitle = $title
2022-11-17 20:02:26 +01:00
$balloon.Visible = $true
$balloon.ShowBalloonTip($Duration)
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-08-15 09:51:46 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of show-notification.ps1 as of 08/15/2024 09:50:54)*