Como eu conecto a mesma rede WiFI após algumas horas?
-
Use
netsh wlan connect name=wifi_profile_name
em um arquivo em lotes.Substitua
wifi_profile_name
pelo nome do perfil a ser usado -
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.
-
-
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
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- Comandos netsh para rede local sem fio (WLAN)
- schtasks - Crie / edite um trabalho / tarefa agendados. O trabalho pode ser criado no computador local ou remoto.