I am working on windows XP.
I have tried the solution listed here.
When I run:
c:\Route print
I get
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.163.1 192.168.163.127 10
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
169.254.0.0 255.255.0.0 192.168.163.127 192.168.163.127 20
192.168.163.0 255.255.255.0 192.168.163.127 192.168.163.127 10
192.168.163.127 255.255.255.255 127.0.0.1 127.0.0.1 10
192.168.163.255 255.255.255.255 192.168.163.127 192.168.163.127 10
224.0.0.0 240.0.0.0 192.168.163.127 192.168.163.127 10
255.255.255.255 255.255.255.255 192.168.163.127 192.168.163.127 1
Default Gateway: 192.168.163.1
===========================================================================
However when I run the solution linked above I get a wmi query error.
So I tried using wmi code creator to see what routes are returned by Win32_IP4RouteTable. There I discovered that a bunch of routes have a InterfaceIndex property of '262146'. Unfortunately when I query the Win32_NetworkAdapterConfiguration there is no property called InterfaceIndex and the closest thing to it (the Index property) never has the value 262146. There is a NetworkAdapter with the IP 192.168.163.127 listed in Win32_NetworkAdapterConfiguration, however I cannot find a way of relating this adapter to the InterfaceIndex listed in Win32_IP4RouteTable. Can anyone explain what I am missing?
Thanks.