Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

How To Create Notification Using Batch Script

@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, 'Title', 'Description.', [System.Windows.Forms.ToolTipIcon]::None)}"
 
PREVIOUS NEXT
Tagged: #How #To #Create #Notification #Using #Batch #Script
ADD COMMENT
Topic
Name
2+9 =