-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetAudioDevices.xml
60 lines (60 loc) · 4.59 KB
/
SetAudioDevices.xml
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>
<URI>\SetAudioDevices</URI>
</RegistrationInfo>
<Triggers>
<EventTrigger>
<Enabled>true</Enabled>
<Subscription><QueryList><Query Id="0" Path="Security"><Select Path="Security">*[System[band(Keywords,9007199254740992) and (EventID=6416)]]</Select></Query></QueryList></Subscription>
</EventTrigger>
<LogonTrigger>
<Enabled>true</Enabled>
</LogonTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<LogonType>S4U</LogonType>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>false</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>
<DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT0S</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>powershell.exe</Command>
<Arguments>-Command "Set-AudioDevice -ID 'PATH1'" -DefaultOnly</Arguments>
</Exec>
<Exec>
<Command>powershell.exe</Command>
<Arguments>-Command "Set-AudioDevice -ID 'PATH2'" -CommunicationOnly</Arguments>
</Exec>
<Exec>
<Command>powershell.exe</Command>
<Arguments>-Command "Set-AudioDevice -ID 'PATH3'" -CommunicationOnly</Arguments>
</Exec>
<Exec>
<Command>powershell.exe</Command>
<Arguments>-Command "Set-AudioDevice -ID 'PATH4'" -DefaultOnly</Arguments>
</Exec>
</Actions>
</Task>