-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev-tasks.xml
More file actions
60 lines (60 loc) · 2.13 KB
/
dev-tasks.xml
File metadata and controls
60 lines (60 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Author>Ngoc Tu Nguyen</Author>
<Description>Launch dev apps at startup: VS Code, Visual Studio (Admin), Chrome, MS Teams, Spark Mail</Description>
</RegistrationInfo>
<Triggers>
<BootTrigger>
<Enabled>true</Enabled>
</BootTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<LogonType>InteractiveToken</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>true</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>false</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">
<!-- VS Code -->
<Exec>
<Command>C:\Users\%USERNAME%\AppData\Local\Programs\Microsoft VS Code\Code.exe</Command>
</Exec>
<!-- Visual Studio (Admin) -->
<Exec>
<Command>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.exe</Command>
</Exec>
<!-- Google Chrome -->
<Exec>
<Command>C:\Program Files\Google\Chrome\Application\chrome.exe</Command>
</Exec>
<!-- Microsoft Teams -->
<Exec>
<Command>%LOCALAPPDATA%\Microsoft\Teams\Update.exe</Command>
<Arguments>--processStart "Teams.exe"</Arguments>
</Exec>
<!-- Spark Mail -->
<Exec>
<Command>C:\Users\%USERNAME%\AppData\Local\spark\Spark.exe</Command>
</Exec>
</Actions>
</Task>