Actually, you should be able to get this information from the tblNetworkAdapter database table. It pulls information from the Win32_NetworkAdapter WMI class. This class is only available in Windows Vista and higher however.
TblNetworkAdapter is somewhat of a "hidden" table. It's not displayed in the web console, but you can query it with the report builder.
Actually, you should be able to get this information from the tblNetworkAdapter database table. It pulls information from the Win32_NetworkAdapter WMI class. This class is only available in Windows Vista and higher however.
TblNetworkAdapter is somewhat of a "hidden" table. It's not displayed in the web console, but you can query it with the report builder.
There is no built-in functionality for copying action results to the database. The ideal solution would be to scan the information through custom registry scanning. I assume this won't work for the specific information you're after however, as each NIC will likely have its own registry key (and you can only scan specific registry values).
I made an action script: cmd.exe /K "wmic /node:{ipaddress} NIC where NetEnabled=true get Name, Speed" This will give me the speed of the asset in the cmd prompt.
Is it somehow possible to get this information into a report? Or am I on the wrong track?