Client Management Suite

 View Only
Expand all | Collapse all

Differential Software Report y/o New Software Installed Alert?

  • 1.  Differential Software Report y/o New Software Installed Alert?

    Posted Jun 21, 2012 12:28 PM

    Hi

    Im using NS7.1 but I cant find some way of automate a differential software report, or make an email atert to notify a new software installed.

     

    Any ideas guys?

     

    Thanks!



  • 2.  RE: Differential Software Report y/o New Software Installed Alert?
    Best Answer

    Posted Jun 21, 2012 02:53 PM

     

    Does this work?
     
    SELECT vc.Name,arp.DisplayName,arp.DisplayVersion 
    FROM Inv_AddRemoveProgram arp
    JOIN vComputer vc ON vc.Guid=arp._ResourceGuid
    WHERE arp.InstallFlag=1 AND arp.InstallDate > GETDATE()-30
     
    Once you create this as a report, an automation policy would handle the e-mail task for you:
    http://www.symantec.com/docs/HOWTO21604


  • 3.  RE: Differential Software Report y/o New Software Installed Alert?

    Posted Jun 21, 2012 03:03 PM

    Yes! it worked great thanks a lot!