![]() Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Create Systray Icon with Ballon Tip
|
||
[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 :: |