Client Management Suite

 View Only
Expand all | Collapse all

Report of software pushed from Altiris to a computer by which console user.

  • 1.  Report of software pushed from Altiris to a computer by which console user.

    Posted Sep 18, 2014 11:48 AM

    I'm looking for an audit like report that will tell software that is deployed to a machine from Altiris that tells the user in the console that pushed the software.  Is there a way to identify by a report the software that was pushed by a specific user to a specific computer or computers?

    For example, I have this machine abcd.  It has adobe acrobat pro installed.  It was pushed from Altiris.  I'm trying to identify who pushed the software to the machine (user's ID in the console).  I'd really like to see for all software installed if it was installed by Altiris or not, but for now I'd be happy with just the information from the Altiris side.   Someone was identified with a non-licensed version of a software.  When they were approached, they said someone from IT installed it on my machine not me.  We have no way to prove if the user was telling the truth or not.



  • 2.  RE: Report of software pushed from Altiris to a computer by which console user.

    Posted Sep 23, 2014 01:00 PM

    You can start with this below. Depending on how far back your Evt data goes, it may not be possible to gather the information.

    select vc.name 'Pushed To',
        TIE.ExecutedBy,
        TIE.TaskName,
        eti.*
    from [TaskInstanceParents] TIP
    join TaskInstanceExecutionInfo TIE
        on TIE.TaskInstanceGuid = TIP.ParentTaskInstanceGuid
    join Evt_Task_Instances ETI
        on ETI.TaskInstanceGuid = TIP.TaskInstanceGuid
    left join vComputer vc
        on vc.Guid = ETI._ResourceGuid