TCP/IP settings

  • Thread starter Thread starter Claudio Takahasi
  • Start date Start date
C

Claudio Takahasi

Hello,

I need recover the TCP/IP adapter information and after perform some
settings changes USING C++ A USER MODE APPLICATION.
Which options I have and which one is better? (WMI, ...)
How can I change the TCP/IP adapter settings? (like DHCP, DNS)


Thanks,
Claudio.
 
You could shell out and execute this command:

netsh.exe interface ip set address local static 192.168.1.1 255.255.255.0
 
Back
Top