Created
October 4, 2024 20:24
-
-
Save jaypeche/49de07e1fde2840b293367fd0174d365 to your computer and use it in GitHub Desktop.
windows notification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add-Type -AssemblyName System.Windows.Forms | |
$notify = New-Object System.Windows.Forms.NotifyIcon | |
$notify.Icon = [System.Drawing.SystemIcons]::Information | |
$notify.BalloonTipTitle = "Hello World Windows notification" | |
$notify.BalloonTipText = "Generate with GPT4.o" | |
$notify.BalloonTipIcon = [System.Windows.Forms.ToolTipIcon]::Info | |
$notify.Visible = $true | |
$notify.ShowBalloonTip(15000) | |
# Optionnel: Attendre avant de fermer la notification | |
Start-Sleep -Seconds 10 | |
$notify.Dispose() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment