Workflow Soluiton

 View Only
  • 1.  Find what Filters a computer is member of?

    Posted Apr 25, 2012 09:44 AM

    We are working on a workflow that will decommission a computer an move the configuration onto a replacement computer. In this setting I need to identify what Filters the old computer are a member of so that I can add the new computer to the same filters. In the Altiris console – Resource Manager there are a Filter Summary that show all the filters so it should be possible. Anyone who can tell how I can get these filters from/into workflow?



  • 2.  RE: Find what Filters a computer is member of?
    Best Answer

    Posted Apr 25, 2012 05:12 PM

    I don't know how to get it into workflow (we don't use workflow), but here's a SQL query to tell what filters it belongs to:

    select vCollection.Name, CollectionMembership.CollectionGuid from CollectionMembership 
    
    join vCollection on Guid = CollectionMembership.CollectionGuid
    
    where ResourceGuid = '3F5F93A8-B8AC-42B6-A805-030393FACD21'

    The ResourceGuid is the Guid of the machine in question.

     

     

     



  • 3.  RE: Find what Filters a computer is member of?

    Posted Apr 27, 2012 07:16 AM

    I created a workflow integration component based on the query and it returned the filters

    Perfect, thanks.