Loading
Is anyone aware of the ability in Flexera One to report on "All machines without (Software ABC)"?

I've explored various views, ITAM reporting, and ITV reporting, but haven't been able to find a method to support this type of reporting request.


  • If you create a custom report with the tables Inventory Device and Installations, then you can set the filter Application Name doesnt contain Software ABC.

    This will however return quite a lot of rows with all other software installed on the devices.

    You could probably also run a GraphQL query

    query {

     devices(where: { not: { software: { name: { matches: "Software ABC" } } } }) {

      name

     }

    }

    Expand Post
  • You need to insert slicer for the software field, make it dropdown type, select all and deselect the ABC software.

    • Would you be able to share a screenshot of the Edit/Data points/Filter selected for this?

  • image 

    Please check above image. In my report, I have inserted slicer for Software Release and in dropdown, I have selected all and deselected Microsift Edge 113.

    Below image shows slicer selection and field selection.

     

    imageBelow image shows how to change slicer settings for dropdown and multiple selection.

    imageYou can enable search from the three dots in the right top corner of the table.

     

    image 

    Hope this helps :)

    Expand Post

Loading
Is anyone aware of the ability in Flexera One to report on "All machines without (Software ABC)"?