I need to add a route into the IP4 routing table on windows xp.
However, the Win32_IP4RouteTable class seems to only be able to query existing routes.
Basically I need the same functionality as:
route ADD 192.168.127.254 MASK 255.255.255.255 192.168.1.10
Is it possible to use WMI to add an entry into the IP4 routing table?
Could I use CreateProcess instead?