Hope the subject line makes it clear.

I need to disable a network adapter programmatically using C#(.NET 2.0) on Windows XP/E

Background Reason : After installing a Bluetooth stack on the pc. The Bluetooth PAN adapter blocks the Bluetooth manager program (that runs in the system tray). If i disable the Bluetooth PAN then the Bluetooth manager works fine.

This issue is happening only on XP embedded machines.

Any ideas / suggestions deeply appreciated.

link|improve this question

53% accept rate
I remember looking for options to do that in Windows 7 when network drivers weren't really working out too great on my laptop. My research then found that this was impossible if it is set to get the IP automatically (i.e., dynamic address). I believe it's the same for XP, just so you know. – Jeff Mercado Sep 19 '11 at 10:38
feedback

3 Answers

netsh interface set interface "YOUR_ADAPTOR" DISABLED

NOTE: Note sure about XP, but in Windows Vista / Windows 7, this will only work on a command prompt run with administrator privileges ("Run as Administrator" option).

link|improve this answer
+1 for noting UAC elevation requirement. – Richard Apr 29 at 10:26
feedback

try this:

netsh interface set interface "YOUR_ADAPTOR" DISABLED
link|improve this answer
"YOUR_ADAPTOR" here is the name as seen in the Device manager? or the instance id ??. Because i receive the error "An interface with this name is not registered with the router" upon executing your suggestion – this-Me Sep 19 '11 at 10:25
@this-Me: I think it is the name, refer to the output of netsh interface show interface. – Christian.K Sep 19 '11 at 10:27
THE NAME OF THE ADAPTOR :) – unruledboy Sep 19 '11 at 10:30
I ran "netsh interface show interface" command to get the interface name as "Local Area Connection 3". After this i tried running " ...netsh interface set interface "Local Area Connection 3" DISABLED.." command to receive error – this-Me Sep 19 '11 at 10:36
1  
what kind of error? – unruledboy Sep 19 '11 at 12:44
feedback

If you want to use the name shown in device manager it is probably going to be easier to use WMI. A query

SELECT * FROM Win32_NetworkAdpater WHERE NName='name from device mnanager'

will select a WMI object with a Disable method.

Something like this given a device name "Realtek PCIe GBE Family Controller":

var searcher = new ManagementObjectSearcher("select * from win32_networkadapter where Name='Realtek PCIe GBE Family Controller'");
var found = searcher.Get();
var nicObj = found.First() as ManagementObject; // Need to cast from ManagementBaseObject to get access to InvokeMethod.

var result = (uint)nicObj.InvokeMethod("Disable"); // 0 => success; otherwise error.

NB. like Netsh this will require elevation to perform the disable (but not for the query).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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