Client Management Suite

 View Only
  • 1.  View active computers on Altiris 7.5

    Posted Feb 24, 2014 11:28 AM

    Is there a way to see which computers are online/active, like we could in 6.9?  I know I can ping machines.

    Thanks!



  • 2.  RE: View active computers on Altiris 7.5

    Posted Feb 24, 2014 11:32 AM

    You can found under.

    Reports->All reports->Discovery and Inventory->Inventory->Cross-platform->Inventory Agent->Inventory Diagnostics->Under you can find (Computers that have not reported inventory in last N days)



  • 3.  RE: View active computers on Altiris 7.5

    Posted Feb 24, 2014 12:20 PM

    But nothing similar to the 6.9 console that showed if the machine was powered on or not, and if it had a user logged in or not?



  • 4.  RE: View active computers on Altiris 7.5

    Posted Feb 24, 2014 04:15 PM
    In the site server view you can see active and inactive clients with different icons


  • 5.  RE: View active computers on Altiris 7.5



  • 6.  RE: View active computers on Altiris 7.5

    Posted Mar 03, 2014 08:51 AM

    Hi no-idea:

     

    from where can we check the option that you suggested...?



  • 7.  RE: View active computers on Altiris 7.5

    Posted Mar 03, 2014 02:31 PM

    Have a look at the screenshot.

    test.png



  • 8.  RE: View active computers on Altiris 7.5

    Broadcom Employee
    Posted Mar 03, 2014 03:00 PM

    Hi,


    You can use this SQL query to create your own report in SMP console, to see only active managed computers.

    select vc.[Guid] as [ResourceGuid], vc.[Name], ctr.[HasTaskAgent],
    ctr.[IsActive], 
    ctr.[LastRegistered], coalesce( cta.[Product Version], '' ) as [Version],
    vc.[IP Address] as [IPAddress],
    vc.[Domain],
    vc.[OS Name] as [OSName]
    from [dbo].[TaskTargetDeviceCache] vc 
    left outer join [dbo].[Inv_Client_Task_Resources] ctr
    on ctr.[_ResourceGuid] = vc.[Guid]
    left outer join [dbo].[Inv_Client_Task_Servers] cts
    on cts.[ClientTaskServerGuid] = ctr.[ClientTaskServerGuid]
    left outer join [dbo].[Inv_AeX_AC_Client_Agent] cta
    on cta.[_ResourceGuid] = ctr.[_ResourceGuid]
    and lower( cta.[Agent Name] ) = 'altiris client task agent'
    where
    ( vc.[IP Address] is not NULL and LEN(vc.[IP Address])>0 )
    AND ctr.[IsActive]='1'
    ORDER by Name
    ASC
     
     
    Thanks,
    IP.


  • 9.  RE: View active computers on Altiris 7.5

    Posted Mar 04, 2014 10:06 AM

    My Portal choose "Edit" and add in the view "Task management\task computers and devices"

    you can  see Active and non-active by task/site server

     

    C



  • 10.  RE: View active computers on Altiris 7.5

    Posted Jul 25, 2014 05:45 AM

    Hi IP,

     

    Thanks for the query. but its not working.



  • 11.  RE: View active computers on Altiris 7.5

    Posted Jul 25, 2014 05:46 AM

    Thanks C



  • 12.  RE: View active computers on Altiris 7.5

    Broadcom Employee
    Posted Jul 25, 2014 05:53 AM

    What exactly you see that it doesn't work for you? On my side it worksREPORT_ACTIVEMACHINES.jpg