Existe uma maneira de agendar o windows 10 conexão à internet

1

Eu preciso que meu computador seja reconectado à internet depois de algumas horas a partir de agora, por exemplo, enquanto eu o desconecto manualmente, como devo configurá-lo para conectar-me à mesma rede wifi depois de algumas horas?

Eu baixei o agendador de tarefas, mas não encontrei nada parecido no software para definir:

Aqui está o agendador que uso:

qual é o voto negativo para ?????

    
por Farzad64 28.01.2016 / 11:26

1 resposta

2

Como eu conecto a mesma rede WiFI após algumas horas?

  1. Use netsh wlan connect name=wifi_profile_name em um arquivo em lotes.

    Substitua wifi_profile_name pelo nome do perfil a ser usado

  2. Agende uma tarefa usando o agendador de tarefas incorporado taskschd.msc para executar o arquivo em lotes no momento em que você deseja se conectar:

    • Clique em "Iniciar"

    • Digite Tarefa e clique em "Agendador de tarefas"

    • Clique em "Criar tarefa básica".

    • Será iniciado um assistente que o guiará pelo processo, perguntando a você qual programa você deseja executar, com que frequência e a que horas ele deve ser executado.

  3. Você também pode usar schtasks para criar a tarefa a partir da linha de comando como alternativa ao uso da tarefa Agendador.

netsh wlan connect use

netsh wlan connect /?

Usage: connect [name=] [[ssid=]] [[interface=]]

Parameters:

Tag             Value
ssid          - SSID of the wireless network.
name          - Name of the profile to be used in connection attempt.
interface     - Name of the interface from which connection is attempted.

Remarks:

Connect to the wireless network given by ssid using the specified profile. Connection is attempted from the specified interface unless there is only one available interface on the system, in which case, the interface parameter can be omitted.

Parameter profile name is required but ssid is optional. If only one SSID exists in the profile, then this SSID is used to connect. If there are multiple SSIDs in the profile, then parameter ssid is required.

Parameter interface is required if there are two or more available interfaces on the system. When interface is specified, it cannot be a wildcard name.

If the specified interface is already connected to a wireless network, this command will first disconnect from the currently connected network, then attempt to connect to the new network. However, if these two networks are the same this command simply returns success and does nothing.

Examples:

connect name=Profile1 ssid=SSID1
connect name=Profile2 ssid=SSID2 interface="Wireless Network Connection"

Leitura Adicional

por 28.01.2016 / 11:45