Scheduled disable/enable Network adaptors?

Danial Daneshmand

Reputable
Apr 8, 2015
12
0
4,510
Basically i want to schedule a disable command on a network at a given time and enable another after that.

I have Internet from 2 ISP's and two modems, one is for unlimited downloading and other one is limited. I want these two to switch automatically.

Is this possible?
 
Solution
(assuming you are running Windows): Create two scripts (.BAT/.CMD file), with following contents:
<Disable script>
Code:
netsh interface set interface “Local Area Connection” DISABLED
<Disable script>
Code:
netsh interface set interface “Local Area Connection” ENABLED
Rename "Local Area Connection" to match the interface you want to manage
Put these scripts in Task Scheduler
(assuming you are running Windows): Create two scripts (.BAT/.CMD file), with following contents:
<Disable script>
Code:
netsh interface set interface “Local Area Connection” DISABLED
<Disable script>
Code:
netsh interface set interface “Local Area Connection” ENABLED
Rename "Local Area Connection" to match the interface you want to manage
Put these scripts in Task Scheduler
 
Solution
What is needed to make this work in the latest version of Windows 10?