Discover multifunction Adapter

Anything VBScript-related, including Windows Script Host, WMI, ADSI, and more.
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 16 years and 9 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
new_user
Posts: 157
Last visit: Tue May 06, 2014 5:46 pm

Discover multifunction Adapter

Post by new_user »

At my facility we use ILO cards in most of our servers, the issue I have is unless there is either a DHCP network connection to the ILO card or a static IP [essentially the card is configured] I do not have a way in determing if I am missing servers that do have an ILO card but do not show up in my HP SIM console.

So I a trying to write some kind of WMI script to search each server to see if it has an ILO card. When you look on a server that does, it shows up in device manager as Mulitfunction Adapter, then expanding that might say something like HP ILO management Channel Interface Driver, or some variation of. I did not see any way to find this attrbbute with some of the free WMI code creating stuff from MS, has anyone ever done this or know how I could go about this?

Thanks,

Craig
User avatar
new_user
Posts: 157
Last visit: Tue May 06, 2014 5:46 pm

Discover multifunction Adapter

Post by new_user »

At my facility we use ILO cards in most of our servers, the issue I have is unless there is either a DHCP network connection to the ILO card or a static IP [essentially the card is configured] I do not have a way in determing if I am missing servers that do have an ILO card but do not show up in my HP SIM console.

So I a trying to write some kind of WMI script to search each server to see if it has an ILO card. When you look on a server that does, it shows up in device manager as Mulitfunction Adapter, then expanding that might say something like HP ILO management Channel Interface Driver, or some variation of. I did not see any way to find this attrbbute with some of the free WMI code creating stuff from MS, has anyone ever done this or know how I could go about this?

Thanks,

Craig
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Discover multifunction Adapter

Post by jvierra »

Just enumerate teh Win32_NetworkAdapter class and match for the name you are looking for.
User avatar
new_user
Posts: 157
Last visit: Tue May 06, 2014 5:46 pm

Discover multifunction Adapter

Post by new_user »

Thanks, I did do that again to be sure but did not see anything relating to multifunction adapter or HP ILO Management Channel. Have any other ideas?
jvierra
Posts: 15439
Last visit: Tue Nov 21, 2023 6:37 pm
Answers: 30
Has voted: 4 times
Been upvoted: 33 times

Discover multifunction Adapter

Post by jvierra »

Run webemtest and look at the adapters. WHat is in the caption, name or description that you can use?
Note that for most ILO methods teh adap[ter is configured in the BIOS and not the OS. The adapter does not normally appear to teh OS. Some vendors add custom MOFs to make it accessible. HP may have that but you may not have it installed.

Check for an HP namespace in WMI. SOme implementation/installs only use SNMP to look at the ILO.

jvierra2007-06-20 14:32:20
User avatar
jhicks
Posts: 1789
Last visit: Mon Oct 19, 2015 9:21 am

Discover multifunction Adapter

Post by jhicks »

The whole point of ILO is that it is outside of the OS so WMI probably won't help, as Jim has pointed out. You should use the vendor's ILO management tools and utilities. It's in the vendor's best interest to help you out (so you'll buy more servers and services).
This topic is 16 years and 9 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked