Created
October 4, 2024 20:25
-
-
Save jaypeche/02205ab1e0b2135b0374fea62e8001ef 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