Is there any class/routine in Qt that can retrieve the value of 'device description' in 'Network adapters' in 'device manager', see below picture -
Asked
Active
Viewed 72 times
0
-
Qt likely doesn't provide what you are looking for. Best I could find is [QSysInfo](https://doc.qt.io/qt-5/qsysinfo.html), and that just has the bare minimum, nothing network-related. – hlt May 16 '18 at 17:37
-
You could have a look at [QNetworkInterface::humanReadableName()](http://doc.qt.io/qt-5/qnetworkinterface.html#humanReadableName). It is not exactly what you are looking for, but depending on what you need the name for might be sufficient. – Martin Höher May 16 '18 at 20:04
-
I recently answered this question. The answer is no. There is no way in Qt. See my answer: https://stackoverflow.com/a/49952953/3606329 – user3606329 May 16 '18 at 21:40