Você pode ativar ou desativá-lo com os comandos a seguir. Tentando criar dois arquivos em lote, ative / desative e use o agendador de tarefas para definir um horário.
Use outro nome, se não a área local.
netsh interface show interface
netsh interface set interface name="Local Area Connection" admin=disabled
netsh interface set interface name="Local Area Connection" admin=enabled
Ou você pode usar isso.
Start elevated Command Prompt.
Get NIC list and index number: wmic nic get name, index
Enable NIC with index number: (e.g.: 7) wmic path win32_networkadapter where index=7 call enable
Disable NIC with index number: (e.g.: 7) wmic path win32_networkadapter where index=7 call disable