richie1985 Posted February 3, 2014 Posted February 3, 2014 hi, i want on all clients (over 400) to show hostname directly and permantly to the user (for remote help), but i dont know how? The best would be, if the hostname will be shown anywhere in the taskbar... have you a idea how i can make this? Thx!
Gianni Posted February 3, 2014 Posted February 3, 2014 this should do #NoTrayIcon Opt("TrayMenuMode", 1) ; Default tray menu items (Script Paused/Exit) will not be shown. Local $exititem = TrayCreateItem("Exit") TraySetIcon("Shell32.dll", -13) ; IC icon TraySetToolTip("The name of this computer is " & @ComputerName) TraySetState() While 1 If TrayGetMsg() = $exititem Then Exit Sleep(10) ; Idle loop WEnd Exit Chimp small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....
richie1985 Posted February 3, 2014 Author Posted February 3, 2014 could i show text instead of the icon?
Gianni Posted February 3, 2014 Posted February 3, 2014 (edited) could i show text instead of the icon? I do not know maybe >here something to try Edited February 3, 2014 by PincoPanco Chimp small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now