Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Blog
  • Questions
  • Learning
    • E-learning Courses
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Tutorials
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • Integration Studio
      • System Architecture
      • DataMiner Releases & Updates
      • DataMiner Apps
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Windows Platform unable to populate Network Adapter Table (for Windows 2008 R2 Enterprise elements)

Solved1.58K views5th December 20222008 R2 Enterprise Microsoft Platform Network Adapter Table
1
Bing Herng Chong [SLC] [DevOps Advocate]1.06K 8th March 2021 0 Comments

Hi all,

We want to have Windows 2008 R2 Enterprise servers (non-virtual) managed by a DMA that is currently running 10.0.0.0-9742-CU8. I am facing some issues in getting Microsoft Platform v1.1.2.19 to display the Network Adapter Table.

Initially the issue seems to be that querying Win32_NetworkAdapter and Win32_PerfRawData_Tcpip_NetworkAdapter was not returning any data:

(0/0) << SELECT NetConnectionID,NetConnectionStatus,Name,MACAddress,Index FROM Win32_NetworkAdapter WHERE MACADDRESS != NULL AND NETCONNECTIONID != NULL
(1510/1510) >> VT_ARRAY|VT_VARIANT (5)
0 VT_ARRAY|VT_VARIANT (0)
1 VT_ARRAY|VT_VARIANT (0)
2 VT_ARRAY|VT_VARIANT (0)
3 VT_ARRAY|VT_VARIANT (0)
4 VT_ARRAY|VT_VARIANT (0)
(0/0) << SELECT name,BytesSentPerSec,BytesReceivedPerSec,BytesTotalPerSec,Frequency_PerfTime,Timestamp_PerfTime,CurrentBandwidth FROM Win32_PerfRawData_Tcpip_NetworkAdapter WHERE NAME != "MS TCP LOOPBACK INTERFACE"
(8/8) >> VT_ARRAY|VT_VARIANT (7)
0 VT_ARRAY|VT_VARIANT (0)
1 VT_ARRAY|VT_VARIANT (0)
2 VT_ARRAY|VT_VARIANT (0)
3 VT_ARRAY|VT_VARIANT (0)
4 VT_ARRAY|VT_VARIANT (0)...

It was discovered through some Googling that Windows 2008 R2 Enterprise does not support Win32_PerfRawData_Tcpip_NetworkAdapter, and that Win32_PerfRawData_Tcpip_NetworkInterface needed to be queried instead. I realized that by setting 'Virtual and Team Interfaces' in the driver to 'Not Included' achieved this. As seen below, the driver started to be able to retrieve data from querying Win32_PerfRawData_Tcpip_NetworkInterface but now Win32_NetworkAdapter is reporting a failed query.

(0/0) << SELECT NetConnectionID,NetConnectionStatus,Name,MACAddress,Index FROM Win32_NetworkAdapter WHERE MACADDRESS != NULL AND NETCONNECTIONID != NULL
(1515/1515) >> VT_ARRAY|VT_VARIANT (5)
0 VT_ARRAY|VT_VARIANT (0)
1 VT_ARRAY|VT_VARIANT (0)
2 VT_ARRAY|VT_VARIANT (0)
3 VT_ARRAY|VT_VARIANT (0)
4 VT_ARRAY|VT_VARIANT (0)
Query failed : Retrieving the data failed. (hr = 0x00040004), [WQL: SELECT NetConnectionID,NetConnectionStatus,Name,MACAddress,Index FROM Win32_NetworkAdapter WHERE MACADDRESS != NULL AND NETCONNECTIONID != NULL]
(0/0) << SELECT name,BytesSentPerSec,BytesReceivedPerSec,BytesTotalPerSec,Frequency_PerfTime,Timestamp_PerfTime,CurrentBandwidth FROM Win32_PerfRawData_Tcpip_NetworkInterface WHERE NAME != "MS TCP LOOPBACK INTERFACE"
(60/60) >> VT_ARRAY|VT_VARIANT (7)
0 VT_ARRAY|VT_VARIANT (15)
0 VT_BSTR : Broadcom NetXtreme Gigabit Ethernet
1 VT_BSTR : Broadcom NetXtreme Gigabit Ethernet _2
2 VT_BSTR : Broadcom NetXtreme Gigabit Ethernet _3
3 VT_BSTR : Broadcom NetXtreme Gigabit Ethernet _5
4 VT_BSTR : Broadcom NetXtreme Gigabit Ethernet _6...
1 VT_ARRAY|VT_VARIANT (15)
0 VT_BSTR : 1329244527
1 VT_BSTR : 1033248020
2 VT_BSTR : 1795039235
3 VT_BSTR : 1595232495
4 VT_BSTR : 1519731304...
2 VT_ARRAY|VT_VARIANT (15)
0 VT_BSTR : 60153481228
1 VT_BSTR : 4561145738
2 VT_BSTR : 32160846053
3 VT_BSTR : 1599273442
4 VT_BSTR : 1520328425...
3 VT_ARRAY|VT_VARIANT (15)
0 VT_BSTR : 61482725755
1 VT_BSTR : 5594393758
2 VT_BSTR : 33955885288
3 VT_BSTR : 3194505937
4 VT_BSTR : 3040059729...
4 VT_ARRAY|VT_VARIANT (15)
0 VT_BSTR : 2343769
1 VT_BSTR : 2343769
2 VT_BSTR : 2343769
3 VT_BSTR : 2343769
4 VT_BSTR : 2343769......

Note that using a separate tool called "WMI Code Creator", we could make calls to Win32_NetworkAdapter successfully with the same security credentials that the DMA is using (remotely from the DMA server itself).

Now I'm guessing that what we're experiencing is a configuration issue because I'm certain DataMiner is already monitoring many Windows 2008 Servers in the field. I'm hoping someone has experienced this issue before and that there already is a solution.

Bing Herng Chong [SLC] [DevOps Advocate] Selected answer as best 5th December 2022

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
0
Marlies Vandenberghe [SLC] [DevOps Member]2.97K Posted 18th November 2022 1 Comment

Did you find any solution by now?

Note that you can always try an older version of the driver, however this won't be supported to get new fixes

As an alternative you could also try our SNMP version of the driver

Bing Herng Chong [SLC] [DevOps Advocate] Selected answer as best 5th December 2022
Bing Herng Chong [SLC] [DevOps Advocate] commented 5th December 2022

Customer reported that the driver was able to poll the Network Adaptor Table. This is no longer an issue.

Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas

Recent questions

Multiple Set on Table parameters for DVE’s 0 Answers | 1 Vote
DOM Definition relations returned in Definition query 0 Answers | 1 Vote
Alarm Dashboard PDF/CSV Export 1 Answer | 0 Votes

Question Tags

adl2099 (115) alarm (62) Alarm Console (82) alarms (100) alarm template (83) Automation (223) automation scipt (111) Automation script (167) backup (71) Cassandra (180) Connector (108) Correlation (68) Cube (150) Dashboard (194) Dashboards (188) database (83) DataMiner Cube (57) DIS (81) DMS (71) DOM (140) driver (65) DVE (56) Elastic (83) Elasticsearch (115) elements (80) Failover (104) GQI (159) HTTP (76) IDP (74) LCA (152) low code app (166) low code apps (93) lowcodeapps (75) MySQL (53) protocol (203) QAction (83) security (88) services (51) SNMP (86) SRM (337) table (54) trending (87) upgrade (62) Visio (539) Visual Overview (345)
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs

[ Placeholder content for popup link ] WordPress Download Manager - Best Download Management Plugin