Get not reported computers from actions

Hi guys

Any idea how to get the not reported computers from an action? I can get the statuses, but only failed, fixed, running etc…

((if (exists Name of Computer of it) then (concatenations "%0A" of (Name of Computer of it as string)) else ("<none>")) , (if (exists Status of it) then (concatenations "%0A" of (Status of it as string)) else ("<none>"))) of results whose (((Name of Action of it as string as lowercase contains "av deployment - install"))) of bes actions

This gives me “Not relevant, fixed, failed”… but not “not reported”.

Or is there another way to see the following:
To how many computers did I send an action? (if we use the )

Use case: we are deploying something and we have over 100 actions, so we would like to have a summary of how many computers we deployed to.

Thanks!

If you’ve targeted using ID (Select devices) or a list of names then you should be able to use the targeted properties of bes action like : targeted list of <bes action> and so on. See them listed here

Hi, thanks for the answer.

I didn’t use “Select Devices” but I used “Enter device names”, but I tried anyway:

  targeted lists of bes actions whose (name of it as string as lowercase contains "av deployment - install")

but I’ve got zero results… any idea?

Found it:

(("<not reported>", name of it | "n/a") of elements of (set of targeted computers of it - set of computers of results of it) of bes actions whose (name of it as string as lowercase contains "av deployment - install"))

https://www.ibm.com/developerworks/community/forums/html/topic?id=80645c15-2f10-4daf-9931-7459bd6172d8

1 Like