Skip to content

Instantly share code, notes, and snippets.

@shalithasuranga
Last active November 29, 2020 14:45
Show Gist options
  • Save shalithasuranga/4dce626ceb04e7bfc56b20eb0405e32f to your computer and use it in GitHub Desktop.
Save shalithasuranga/4dce626ceb04e7bfc56b20eb0405e32f to your computer and use it in GitHub Desktop.
@echo off
powershell -Command "& {Add-Type -AssemblyName System.Windows.Forms; Add-Type -AssemblyName System.Drawing; $notify = New-Object System.Windows.Forms.NotifyIcon; $notify.Icon = [System.Drawing.SystemIcons]::Information; $notify.Visible = $true; $notify.ShowBalloonTip(0, 'Hello world', 'This is called from a batch script.', [System.Windows.Forms.ToolTipIcon]::None)}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment