Skip to content

Instantly share code, notes, and snippets.

@AnweshGangula
Created May 6, 2021 17:43
Show Gist options
  • Save AnweshGangula/5c5651b6cc47114dc954995dcd816a38 to your computer and use it in GitHub Desktop.
Save AnweshGangula/5c5651b6cc47114dc954995dcd816a38 to your computer and use it in GitHub Desktop.
Show Windows 10 Balloon comments
# Show Windows 10 Balloon comments
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
$objNotifyIcon = New-Object System.Windows.Forms.NotifyIcon
while($True)
{
$objNotifyIcon.Icon = [System.Drawing.SystemIcons]::Information
$objNotifyIcon.BalloonTipIcon = "Info"
$objNotifyIcon.BalloonTipText = "wzzup this is a title."
$objNotifyIcon.BalloonTipTitle = "WHATS UPPP THIS IS A PARAGRAPH!"
$objNotifyIcon.Visible = $True
$objNotifyIcon.ShowBalloonTip(10000)
Start-Sleep 500
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment