vote up 0 vote down star

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?

flag

1 Answer

vote up 1 vote down check

Do you need solution on WMI only? I usually use IPHelper. Specifically, you need CreateIpForwardEntry function.

link|flag
+1 Magic, thanks. I'd forgotten about IPHelper and I'd actually prefer to use it because all that COM WMI code makes me feel quesy. Now, I don't know what the S.O. etiquette here is - you've solved my problem but not answered the question! – markh44 Apr 29 at 15:06
I'm new here too, so I don't know either... – Alexander Apr 29 at 19:32
Sod it, you solved the problem I'll accept it as the answer. It doesn't seem like there's any other answers forthcoming anyway! – markh44 Apr 30 at 9:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.