Files
syncthing-android/scripts/debug/win/task-scheduler/SyncthingDevInstance.xml
Catfriend1 8488dbf42d scripts/debug/win: Add scheduled task
SyncthingDevInstance
Make Notepad++ recognize build intermediate folders as hidden folders on windows.
2025-05-13 14:59:34 +02:00

39 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<URI>\Syncthing\SyncthingDevInstance</URI>
</RegistrationInfo>
<Triggers />
<Principals>
<Principal id="Author">
<UserId>userSid</UserId>
<LogonType>InteractiveToken</LogonType>
<RunLevel>LeastPrivilege</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</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>PT72H</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>%LocalAppData%\Syncthing\syncthing.exe</Command>
<Arguments>--no-console --no-browser</Arguments>
</Exec>
</Actions>
</Task>