Client Management Suite

 View Only
Expand all | Collapse all

preboot configuration report task

  • 1.  preboot configuration report task

    Posted Apr 22, 2014 04:39 AM

    Does anyone know of a report that will show me what tasks are using what preboot configuration ? 

    Thanks



  • 2.  RE: preboot configuration report task
    Best Answer

    Posted Apr 23, 2014 10:13 AM

    SELECT i1.Name AS Task,i2.Name AS Preboot

    FROM Item i1

    JOIN ItemReference ir ON ir.ParentItemGuid = i1.[Guid]

    JOIN Item i2 ON i2.[Guid] = ir.ChildItemGuid

    WHERE ir.Hint = 'prebootimageconfigurationusedintask'



  • 3.  RE: preboot configuration report task

    Posted Apr 23, 2014 12:00 PM

    brilliant - thanks.



  • 4.  RE: preboot configuration report task

    Posted Apr 23, 2014 12:04 PM
    Happy to help.