Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 187561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T15:50:42+00:00 2026-05-11T15:50:42+00:00

I have an application written in C# that needs to be able to configure

  • 0

I have an application written in C# that needs to be able to configure the network adapters in Windows. I have this basically working through WMI, but there are a couple of things I don’t like about that solution: sometimes the settings don’t seem to stick, and when the network cable is not plugged in, errors are returned from the WMI methods, so I can’t tell if they really succeeded or not.

I need to be able to configure all of the settings available through the network connections – Properties – TCP/IP screens.

What’s the best way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T15:50:43+00:00Added an answer on May 11, 2026 at 3:50 pm

    You could use Process to fire off netsh commands to set all the properties in the network dialogs.

    eg: To set a static ipaddress on an adapter

    netsh interface ip set address 'Local Area Connection' static 192.168.0.10 255.255.255.0 192.168.0.1 1 

    To set it to dhcp you’d use

    netsh interface ip set address 'Local Area Connection' dhcp 

    To do it from C# would be

    Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo('netsh', 'interface ip set address \'Local Area Connection\' static 192.168.0.10 255.255.255.0 192.168.0.1 1'); p.StartInfo = psi; p.Start(); 

    Setting to static can take a good couple of seconds to complete so if you need to, make sure you wait for the process to exit.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an existing application that is written in C++ for Windows. This application
I have a Windows application written in C++ that occasionally evaporates. I use the
I have a distributed windows application (written in C#) that currently uses MSDE. The
We have a WinForms application written in C# that uses the AxAcroPDFLib.AxAcroPDF component to
I have a web application written in C# that consumes several internal web services.
I have an application written in VB.NET that interacts with Excel via interop. I
I have a console application written in Delphi. I saw that I can have
I have inherited a poorly written web application that seems to have errors when
I have recently written an application(vb.net) that stores and allows searching for old council
I have a web application that was originally written on .Net 1.1 Framework. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.