Hello All,
Is there a way to get Determined whether endpoint is connected through Ethernet or Wifi. Using BigFix Analysis.
Thanks in advance.
Hello All,
Is there a way to get Determined whether endpoint is connected through Ethernet or Wifi. Using BigFix Analysis.
Thanks in advance.
Hello @patch_bigfix, In “BES Inventory and License” site, see if the analysis called “Network Information (Windows)” can assist with this request. It has the following properties:
Standard relevance can do this:
exists (adapters of network) whose (exists wifi of it)
https://developer.bigfix.com/relevance/reference/network-adapter.html
If you extract the mac address the client used when registering, you can find the associated adapter then check to see if it supports wifi:
(exists wifi of it | false) of adapters whose (mac address of it = (registration mac address of client)) of networks
This is a quick run at it, but should work for you.