Need help with fixlet relevance by subnet

(imported topic written by ErinC91)

Hi all,

I’m sure this is probably an easy one but I can’t find another post quite like it on the forums and can’t quite figure it out myself.

I need to craft a fixlet relevance for deploying a piece of software to all PCs except those on a specific subnet. 10.10.0.0/16 for example.

I know this is slightly complicated by the fact that many PCs report multiple IPs (using “adapters of network”) but basically if a reported IP address begins with 10.10.x.x I don’t want the software to run on the PC.

Any suggestions ?

(imported comment written by Doug_Coburn)

Hello,

The following expression will only return true if the IP Address does not start with 10.10.

not (exists addresses whose (it as string starts with “10.10.”) of adapters of network)

-Doug

(imported comment written by ErinC91)

Doug, that works a treat, thank you very much. I was so close too!

Much apppreciated.