Disabling network adapters

rocks911

New member
Member
VIP
Local time
1:11 PM
Messages
100
I'm running a W7 64 bit machine and was wondering if there is an easy way to temporarily disable Network Adapters on my machine?
 

My Computer

Computer Manufacturer/Model Number
HP model HPE-519C
OS
Windows 7 home premium 64 bit
CPU
AMD Phenom IIx6 1065T 2.90 GHz
Motherboard
Foxconn H-RS880-UATX (ALOE)
Memory
8 GB
Graphics Card(s)
ATI Radeon HD 5570
Hey rocks911,

Hope this small tutorial can help you and you get what you are desiring to do.
 

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom Bulid/Self made
OS
Windows 11 x64
CPU
i5 2500K @ 3.3 GHz
Motherboard
ASUS P8 Z77 V pro
Memory
16 GB DDR 3 @ 1600Mhz
Graphics Card(s)
MSI 1050TI 4GB OC version
Sound Card
On Board (Realtek HD audio)
Monitor(s) Displays
Samsung 22" LCD
Screen Resolution
1920*1080
Hard Drives
Seagate 1 TB, WD 1TB, Seagate 2 TB ( I use a lot of space)
PSU
coolermaster 750 W
Case
Coolermaster HAF912
Cooling
Coolermaster hyper 212 EVO
Keyboard
Samsung
Mouse
Dell Wireless
Internet Speed
Wireless 50 Mbps
Antivirus
AVG 2016 Internet Security
Browser
Google Chrome
Some motherboards also allow you to disable the adapter right from the BIOS. It depends on your Motherboard model. You could try the suggestion above, is faster to enable/disable. But if you consider to disable it and not enable it for a long time you could also try the BIOS setting.
 

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom Build
OS
Windows 7 Ultimate SP1 64 Bits
CPU
AMD A6-3650 APU 2.60
Motherboard
Asrock A75M-HVS
Memory
4 Gb
Graphics Card(s)
Radeon HD
Sound Card
Built-In
Monitor(s) Displays
Hp w1907
Screen Resolution
1440 x 900
Hard Drives
1
PSU
Conventional
Case
Conventional
Cooling
Conventional
Keyboard
Genius
Mouse
Benq
Internet Speed
1 mb
Antivirus
AVG
Browser
Firefox
I'm running a W7 64 bit machine and was wondering if there is an easy way to temporarily disable Network Adapters on my machine?

Hey rocks911,

Hope this small tutorial can help you and you get what you are desiring to do.
In the link that archer posted - below the video - there is a screenshot showing a right-click on an adapter. In that context menu, there is the option to create a desktop shortcut. If you are going to disable/enable one or more network adapters often, then you might want to create a shortcut on your desktop to each adapter of interest.

Once you have a desktop shortcut, you can right-click on that shortcut and select Disable from the context menu. When you want to enable that network adapter, you can right-click on that shortcut and select Enable from the context menu OR simply double click on that shortcut (since Enable is the default action).

If you would rather not have shortcuts like that on you desktop, then perhaps a batch file would be more to your liking.

Enable file extensions - if need be:
File Extensions - Hide or Show

Create a new text file in whatever folder you like.
Open that new file in notepad.
Paste in this code.

Code:
netsh interface set interface name="Local Area Connection" disable
netsh interface set interface name="Local Area Connection 2" disable
netsh interface set interface name="Local Area Connection 3" disable
netsh interface set interface name="Local Area Connection 4" disable
Replace "Local Area Connection" with the exact text for each adapter of interest.
Save the text file.
Exit notepad.

Rename the text file and the extension to this disable.bat

Create a shortcut to that batch file and set it to always run with elevated privileges.
(See option six of this tutorial http://www.sevenforums.com/tutorials/11841-run-administrator.html)
If desired, place that shortcut on the desktop or in the Start menu.
If desired, assign a Shortcut key to the shortcut. (e.g.Ctrl-Alt-D)

disable.png

Repeat the steps above using the code/text below for enable.bat
Code:
netsh interface set interface name="Local Area Connection" enable
netsh interface set interface name="Local Area Connection 2" enable
netsh interface set interface name="Local Area Connection 3" enable
netsh interface set interface name="Local Area Connection 4" enable
edit:
I have seen parents use this to keep children offline at times.
If the children use standard user accounts...
...and if the children do not know the password to an admin account
...then they cannot (easily) enable the network adapters.
IE10 and IE11 offer to enable one of the network adapters via the network troubleshooter, but it still requires an admin to do that. The parent might also have to password protect BIOS and prevent booting to CD/DVD/USB.
 
Last edited:

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
Employer provided Dell Latitude
OS
W7 Pro SP1 64bit
CPU
i7
Memory
8GB
Graphics Card(s)
Intel HD Graphics
Hard Drives
crappy SSD
Antivirus
Employer mandated Symantec Endpoint Protection
Browser
Pale Moon 64bit, IE11 64bit & Chrome 64bit
rocks911,
You picked an excellent/simple/concise title for your thread. I can guarantee you that search engines like Google will lead many other people to this thread in the future. It is good to list as much info as possible (within reason) in a thread like this - so Ccasarguedas info below is great for those that want to disable a network adapter for longer periods of time :-)


Some motherboards also allow you to disable the adapter right from the BIOS. It depends on your Motherboard model. You could try the suggestion above, is faster to enable/disable. But if you consider to disable it and not enable it for a long time you could also try the BIOS setting.
Ccasarguedas,
Nice addition to the thread.
 

My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
Employer provided Dell Latitude
OS
W7 Pro SP1 64bit
CPU
i7
Memory
8GB
Graphics Card(s)
Intel HD Graphics
Hard Drives
crappy SSD
Antivirus
Employer mandated Symantec Endpoint Protection
Browser
Pale Moon 64bit, IE11 64bit & Chrome 64bit
Back
Top