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 846127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:33:53+00:00 2026-05-15T06:33:53+00:00

on Windows 7 I can enable and disable connections via the Network Connections Manager

  • 0

on Windows 7 I can enable and disable connections via the Network Connections Manager panel (in system settings).

How can I do this programmatically in C#? Thanks

  • 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. Editorial Team
    Editorial Team
    2026-05-15T06:33:54+00:00Added an answer on May 15, 2026 at 6:33 am

    You can achieve this in C# by leveraging WMI and the Win32_NetworkAdapter WMI class. The Win32_NetworkAdapter class has Enable and Disable methods which can be executed on a selected network interface.

    An example of usage can be found here:

    http://blog.opennetcf.com/ncowburn/2008/06/24/HOWTODisableEnableNetworkConnectionsProgrammaticallyUnderVista.aspx

    link not available, but archived at:

    http://web.archive.org/web/20120615012706/http://blog.opennetcf.com/ncowburn/2008/06/24/HOWTODisableEnableNetworkConnectionsProgrammaticallyUnderVista.aspx

    Briefly, steps to do this are:

    1. Generate a wrapper for the class from VS command prompt

      mgmtclassgen Win32_NetworkAdapter /L CS -p NetworkAdapter.cs
    2. Stepping through the adapters:

      SelectQuery query = new SelectQuery("Win32_NetworkAdapter", "NetConnectionStatus=2");
      ManagementObjectSearcher search = new ManagementObjectSearcher(query);
      foreach(ManagementObject result in search.Get()) {
       NetworkAdapter adapter = new NetworkAdapter(result);
       // Identify the adapter you wish to disable here. 
       // In particular, check the AdapterType and 
       // Description properties.
       // Here, we're selecting the LAN adapters.
       if (adapter.AdapterType.Contains("Ethernet 802.3")) {
          adapter.Disable();
       }
      }

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

Sidebar

Related Questions

How can I disable the attached or built-in webcam(s) programmatically under Windows? By disabling
I have a system service running on my Windows machine that can impersonate the
When I open the properties on a network connnection on windows, I see this
How can I enable or disable a maven profile based on whether the VM
I have C++ code. That code contains Windows mobile GPS enable/disable functionality. I want
Our (asp.net) system is part of a larger system. It is launched via this
Is there a way to programmatically change the screen resolution or enable/disable multiple monitors
I need a simple way to retroactively disable/enable all USB devices in Windows 7
How can i connect a windows phone 7 device with a WiFi-enabled micro controller.
In Windows I can post custom message to another process and inform it to

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.