Discussion: How do everyone utilize the bubble function?
I myself use the domain startup script, P method: When the client starts, automatically copy relevant files to the client machine, and then use a VBS script to run relevant content according to time, such as:
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery("Select * from Win32_Process")
Set objShell = CreateObject("WScript.Shell")
for i = 1 to 8 'Remind 8 times
WScript.Sleep (1000*60*60) 'Remind once every 1 hour
objShell.Run "TrayBalloon.bat"
Next
Wscript.Quit
8 times a day, with an interval of 1 hour, automatically run the bubble P processing to remind everyone to pay attention to eye protection.
Random thoughts: If it can become both the server side + client side are command line (P call), it would be better, able to send messages at any time.
Better than Net send, because when Net Send is sent, the user must manually click OK to cancel (it is still important at some times, but automatic disappearance after reminder is more in line with the office environment usually).