HP,Altiris Group

Expand all | Collapse all

HP Client Manager Alerts

  • 1.  HP Client Manager Alerts

    Posted Jul 13, 2009 09:55 AM
    I have run the HP Local Alerts Configuration Task a few times now and it removes the icon from the taskbar for a period of time but it evenetually comes back.  I don't want the clients to have any icons or notifications in their taskbar.  I'm not farmiliar with Altiris or NS much at all.  Does anyone know what I'm doing wrong?  Thank you very much.


  • 2.  RE: HP Client Manager Alerts

    Posted Jul 22, 2009 05:17 AM
    I have the same problem. I'm using Altiris version 7 sp1. I found that for version 6.2 there is a patch https://kb.altiris.com/article.asp?article=34956&p=1
    This doesn't work for version 7.


  • 3.  RE: HP Client Manager Alerts

    Posted Aug 13, 2009 11:34 AM
    Currently, HP Client Manager cannot totally disable the local alerts and STILL be able to monitor the alerts and send them to the Notification Server for reporting purposes.

    We have addressed this issue and will be available in HPCM 7.1 due to be released early in 2010 (Feb/March timeframe.)


    To minimize the notifications on the client, you can set the time to display the alert to '0' seconds.  The notification will be displayed for a VERY BRIEF moment.


  • 4.  RE: HP Client Manager Alerts

    Posted Dec 02, 2009 10:08 AM
     Will there also be the option to completely hide the client tray icon?


  • 5.  RE: HP Client Manager Alerts

    Posted Jan 26, 2010 12:28 PM
     Hi Joseph,

    Yes.  We have just released HPCM 7.0 SP2.  With this version, you can completely disable any local alerts as well as remove the client tray icon.

    Give it a try.

    Thanks,
    ACM


  • 6.  RE: HP Client Manager Alerts

    Posted May 07, 2010 03:28 PM

    We are still using the 6.0 Console, but glad to know that there are some options once we are upgraded to 7.0



  • 7.  RE: HP Client Manager Alerts

    Posted Jun 01, 2010 10:49 AM
    Probably a bit late, but I did find a workaround for this, (as it would prevent me from even trying this as a way to update laptops in tablets in my enviornment)

    All it takes is Autoit and a UDF(User Defined Functions) you can download from them.

    I wrote a small helper app that will just watch for HPQSmbios.exe (an exe that likes to populate my whole system tray with the same icon repeatedly) and when it opens and closes, then run a function to remove all icons that don't have a valid PID attached to them.

    All you would need to to stop by the autoit forums and download SysTray.au3. The peak memory after running this for 5 days is 4,008K, so the user should never know it's running (you need to start it up when the user logs in)

    Here's the code:


    #NoTrayIcon
    #include <SysTray.au3>
    #include <Process.au3>

    ;This will watch for the HP Client Manager and kill off dead windows it creates
    ProcessWait('AeXAgent.exe')
    kill_dead_icons()

    while 1
        ProcessWait('HPQSmbios.exe')
        ProcessWaitClose('HPQSmbios.exe')
        kill_dead_icons()
    WEnd

    func kill_dead_icons()
        $count = _SysTrayIconCount()
        ConsoleWrite("Count visible tray:  " & $count & @CRLF)
        For $i = $count - 1 To 0 Step -1
            $handle = _SysTrayIconHandle($i)
            $visible = _SysTrayIconVisible($i)
            $pid = WinGetProcess($handle)
            $name = _ProcessGetName($pid)
            $title = WinGetTitle($handle)
            $tooltip = _SysTrayIconTooltip($i)
            ConsoleWrite("index:  " & $i & @TAB & "visible:  " & $visible & @TAB & "handle:  " & $handle & @TAB & "pid:  " & $pid & @TAB & "proc:  " & $name & @TAB & @TAB & "title:  '" & $title & "'" & @TAB & @TAB & "tooltip:  " & $tooltip & @CRLF)
            If $pid = -1 Then _SysTrayIconRemove($i) ; Remove dead icons
            If $title == 'HPCMAlert' Then _SysTrayIconHide($i,1,1) ;Hide HP Client Manager since it can't hide itself...
        Next
    EndFunc




  • 8.  RE: HP Client Manager Alerts

    Posted Jun 03, 2010 05:30 AM

    Hi I need to be able to disable the local client tray icon for this I can see where to disable the alreats in the HP Local Aleerts Configuration Task but can't find where I need to go to turn the tray icon off.  Can any one point me in the right direction?


  • 9.  RE: HP Client Manager Alerts

    Posted Jun 23, 2010 09:12 AM
    Dazza you are out of luck... one of many things that doesn't work right.

    7.1 says it will work, but from everything I'm finding I'm having serious doubts. My solution around this was to write a seperate app to watch for it and hide it when it's found.

    it's not a great solution, but it works. (and the local alerts don't work so I still have some reports of it popping up, with about 30% of my clients never picking up packages they need...)


  • 10.  RE: HP Client Manager Alerts

    Posted Jun 24, 2010 01:48 PM

    Better solution... use AD and set the registry settings yourself.

    HKEY_LOCAL_MACHINE\SOFTWARE\Altiris\Altiris Agent\Plugin Objects\Agents\HPCMSAgent

    and start hacking away...

    For me I set everything to false in the console, yet all of my workstations were set for true, so I forced the setting in AD's group policy preferences, and it behaves much better now.

    Why the same push at the same time resulted in registriy entries that don't match I don't know, but i'm now trying things out to see if i can get all of my client to pick up packages...


  • 11.  RE: HP Client Manager Alerts

    Posted Dec 10, 2010 09:05 AM

    I have Sp2 installed but am still showing the tray icon. What am i missing?