Display a message using a balloon in the system tray / notification area
From Wiki
First of all you will need to download “systemTray.dll” here.
You can upload this file to the netlogon folder, and use a start-up script to copy it to the local machine using this code:
<vb> Dim objFSO '[Object] File System Object Dim oShell Dim filesys Dim objShell
Set objShell = CreateObject ("WScript.Shell") Set objFSO = CreateObject ("Scripting.FileSystemObject")
If Not fso.FileExists("C:\windows\System32\SystemTray.dll") Then
call copysystemtrayfile
End If
sub copysystemtrayfile filesys.CopyFile "\\fn.local\NETLOGON\bin\SystemTray.dll", "C:\windows\System32\" objShell.Run "regsvr32 systemtray.dll /s", 0, 0 end sub </vb>


