Asset Management Suite

 View Only
  • 1.  Report for Hardware resource

    Posted Jan 09, 2013 09:31 AM

    Just looking for some quick assistance on how to go about running a report to gather information on all managed computers such as their hardware resources.

     

    Trying to view all my computers on the network as a whole to gain what needs to be updated hardware wise.

     

    Thanks



  • 2.  RE: Report for Hardware resource

    Posted Jan 09, 2013 03:06 PM

    Reports > Discovery and Inventory > Inventory > Cross-platform > Hardware > Hardware Inventory Search

    Reports > Discovery and Inventory > Inventory > Windows > Upgrade Analysis > Windows Upgrade > Systems Not Windows 7 Capable

    With the second report I've mentioned, you can get a list of computers that are not the proper architecture, or lack at least n GB of RAM, n CPU speed in GHz, or n GB of free disk space.



  • 3.  RE: Report for Hardware resource

    Posted Jan 10, 2013 09:08 AM

    Wow that was pretty deep in the folders, and without direction i was lost rummaging around.  Thanks a lot!



  • 4.  RE: Report for Hardware resource

    Posted Jan 11, 2013 10:22 AM

    another report question...  is ther one to let you know check in times of devices?  When they last communicated with Altiris?



  • 5.  RE: Report for Hardware resource

    Posted Jan 25, 2013 01:45 PM
    Reports > Notification Server Management > Agent > agent request There are other reports in that same directory that are helpful to validate that agents are communicating with the ns as well.


  • 6.  RE: Report for Hardware resource

    Posted Jan 30, 2013 01:50 PM

    The Evt_NS_Client_Config_Request table includes the time a computer last checked in.  You can query it using something like:

     

    SELECT vc.Name, MAX(ccr._eventTime) as 'Last Event Data'
    FROM vComputer vc
    JOIN Evt_NS_Client_Config_Request ccr ON ccr.ResourceGuid=vc.[Guid]
    GROUP BY vc.Name