(imported topic written by jpeppers91)
I’m trying to combine 2 properties into 1.
Name of adapters of network and IP address. The end result should look something like this…
Local Area network - 192.168.2.5
Any ideas?
(imported topic written by jpeppers91)
I’m trying to combine 2 properties into 1.
Name of adapters of network and IP address. The end result should look something like this…
Local Area network - 192.168.2.5
Any ideas?
(imported comment written by Lee Wei)
You can try this:
q: (description of it & " - " & address of it as string ) of adapters whose (address of it as string != “0.0.0.0”) of network
A: Intel® WiFi Link 5300 AGN - 142.131.240.192
A: VMware Virtual Ethernet Adapter for VMnet1 - 192.168.187.1
A: VMware Virtual Ethernet Adapter for VMnet8 - 192.168.136.1
Lee Wei
(imported comment written by jpeppers91)
could I substitute description with name? I need to use the name of the nic to use netsh commands.
(imported comment written by jpeppers91)
Seems like “name” gives me a GUID instead of the actual name. Any ideas?
(imported comment written by BenKus)
You need to look at the “connections” for this… Try this:
q: (name of item 0 of it & " - " & (address of item 1 of it as string)) of (connections of it, adapters of it) whose (guid of item 0 of it = name of item 1 of it) of network
A: Bluetooth Network Connection - 0.0.0.0
A: Network Connect Adapter - 0.0.0.0
A: Local Area Connection - 0.0.0.0
A: Wireless Network Connection - 192.168.0.102
Ben
(imported comment written by Raja9109)
Hi Ben,
is there any way to findout NIC teaming configured on server or not. Pls help
Thanks
Raja
(imported comment written by jgstew)
These might help a bit:
(imported comment written by Krunal92)
Hi Ben,
I tried the relevance u gave.
But the information required is not reflecting for non-windows OS.
Please Help.
Thanks
Krunal