Client Management Suite

 View Only
  • 1.  Need to know login history for each PC

    Posted Jun 22, 2015 07:14 PM

    Did Altiris has that kind of info that how manytime of people login to each PC?

    Example: For each of the 50 machines how many people log into it every day.

     

    Thanks

     

    Lillian

     



  • 2.  RE: Need to know login history for each PC

    Posted Jun 26, 2015 09:44 AM

    If Resource Data History has been enabled for the basic inventory login table, then yes. 



  • 3.  RE: Need to know login history for each PC

    Posted Jun 26, 2015 10:31 AM
    How do you query those info


  • 4.  RE: Need to know login history for each PC

    Posted Jun 26, 2015 11:58 AM

    History tables start with "invhist_"

    Have you tried the inv_aex_ac_machine_usage table?



  • 5.  RE: Need to know login history for each PC

    Posted Jun 30, 2015 02:00 PM

    Hi Lillian,

    Everytime you forget which table you should query in Altiris, you can check out Resource Manager > View. There you can find all data classes related.

    Per your request, I guess the events table will help you better. Check below:

    Capture_9.PNG

    Hope this helps.

    Regards.



  • 6.  RE: Need to know login history for each PC

    Broadcom Employee
    Posted Jun 30, 2015 02:41 PM

    Here is a link with attached xml, where you can find a report about last user logon/logoff

    You can import this attached xml and then delete all unnecessary report and leave only required report.

    Thanks,

    IP.



  • 7.  RE: Need to know login history for each PC

    Trusted Advisor
    Posted Aug 10, 2015 05:12 PM

    This is what we've used a long time.  You can unremark the computer or user lines to suit your needs;

    SELECT     
    Inv_AeX_AC_Identification.Name,    
    Evt_AeX_Client_LogOn.[Domain],
    Evt_AeX_Client_LogOn.[User],
    Evt_AeX_Client_LogOn.[Event],
    Evt_AeX_Client_LogOn.[Time] as [Date and Time]  

    FROM
    vComputer INNER
    JOIN Evt_AeX_Client_LogOn ON vComputer.Guid = Evt_AeX_Client_LogOn._ResourceGuid LEFT OUTER
    JOIN Inv_AeX_AC_Identification ON vComputer.Guid = Inv_AeX_AC_Identification._ResourceGuid   

    WHERE

    --(Inv_AeX_AC_Identification.Name LIKE '%computername%')
    --Evt_AeX_Client_LogOn.[User] = '%userid%'

    ORDER BY Evt_AeX_Client_LogOn.[Time] DESC