Disable Wireless network adapter

  • Thread starter Thread starter DB - NeMCMH
  • Start date Start date
D

DB - NeMCMH

We have about 50 Laptops that have wireless connectivity. I would like to
disable the wireless adapter. Is there a way to do this with SMS or a script?
 
"DB - NeMCMH" <DBNeMCMH@discussions.microsoft.com> wrote in message
news:6269FA8B-2775-4785-BEB8-86D1CC8A2A26@microsoft.com...
> We have about 50 Laptops that have wireless connectivity. I would like to
> disable the wireless adapter. Is there a way to do this with SMS or a
> script?


You can do it like so:

devcon disable "PCI\CC_0200"

"PCI\CC-0200" is the name of your adapter. To find out what it
is, use this command:

devcon hwdis "*" > c:\devices.txt

then look for your adapter in devices.txt and select one
of the listed names, preferably one without ampersands.

You can get devcon.exe from here:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q311272
 
"DB - NeMCMH" <DBNeMCMH@discussions.microsoft.com> wrote in message
news:6269FA8B-2775-4785-BEB8-86D1CC8A2A26@microsoft.com...
> We have about 50 Laptops that have wireless connectivity. I would like to
> disable the wireless adapter. Is there a way to do this with SMS or a
> script?


Sorry, typographical error. The command should have been:

devcon hwids "*" > c:\devices.txt
 
Back
Top