Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Create Systray Icon with Ballon TipContent of Create Systray Icon with Ballon Tip.ps1MD5 Hash: 4C1AF4D0253C892BB2F8DE6607F0E521 |
||
[reflection.assembly]::loadwithpartialname("System.Windows.Forms")
[reflection.assembly]::loadwithpartialname("System.Drawing") $icon = new-object system.drawing.icon("Script.ico") $notify = new-object system.windows.forms.notifyicon $notify.icon = $icon $notify.visible = $true $notify.showballoontip(10,"My Powershell Ballon Tip","and this is my Message ;-)",[system.windows.forms.tooltipicon]::warning) Start-Sleep 10 | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |