Skip to content

Instantly share code, notes, and snippets.

@jaypeche
Created October 4, 2024 20:24
Show Gist options
  • Save jaypeche/49de07e1fde2840b293367fd0174d365 to your computer and use it in GitHub Desktop.
Save jaypeche/49de07e1fde2840b293367fd0174d365 to your computer and use it in GitHub Desktop.
windows notification
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