![Agendador de tarefas - a tarefa não está se repetindo](https://rvso.com/image/1615239/Agendador%20de%20tarefas%20-%20a%20tarefa%20n%C3%A3o%20est%C3%A1%20se%20repetindo.png)
Eu tenho um script que busca automaticamente a origem no github e a extrai. Quando eu executo clicando nele, ele funciona.
Criei uma tarefa no Agendador de Tarefas que executava constantemente o script a cada minuto. Quando pressiono "executar" no Agendador de tarefas, ele funciona, mas apenas uma vez.
Aqui estão as configurações que coloquei: Gatilhos: Na inicialização - Depois de acionado, repita a cada 00:01:00 por tempo indeterminado
Aqui está o XML da tarefa:
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2020-02-03T18:25:16.5644864</Date>
<Author></Author>
<URI>\Pull from Github (YJJ City Site)</URI>
</RegistrationInfo>
<Triggers>
<BootTrigger>
<Repetition>
<Interval>PT1M</Interval>
<StopAtDurationEnd>false</StopAtDurationEnd>
</Repetition>
<Enabled>true</Enabled>
</BootTrigger>
<CalendarTrigger>
<Repetition>
<Interval>PT1M</Interval>
<StopAtDurationEnd>false</StopAtDurationEnd>
</Repetition>
<StartBoundary>2020-02-03T08:00:00</StartBoundary>
<Enabled>true</Enabled>
<ScheduleByDay>
<DaysInterval>1</DaysInterval>
</ScheduleByDay>
</CalendarTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<LogonType>Password</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>"C:\Program Files\Apache Software Foundation\Apache2.4\htdocs\start.bat"</Command>
</Exec>
</Actions>
</Task>
enter code here