You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Select Path='Application'>Event[System[Provider[@Name='ESENT'] and (Level=4 or Level=0) and (EventID=102)] and EventData[Data='Music.UI']]</Select>
143
+
<Select Path='Application'>Event[System[Provider[@Name='ESENT'] and (Level=4 or Level=0) and (EventID=102)] and EventData[Data='Microsoft.Media.Player']]</Select>
DialogResultautoStartChoice=MessageBox.Show("Do you want to automatically start GroovyRP when Groove Music is opened?","First Run Setup",MessageBoxButtons.YesNo,MessageBoxIcon.Question);
171
-
if(autoStartChoice.Equals(DialogResult.Yes))
172
-
{
173
-
RegisterTask();
174
-
config.RunWhenGrooveMusicOpens=true;
175
-
}
176
-
else
177
-
{
178
-
UnregisterTask();
179
-
config.RunWhenGrooveMusicOpens=false;
180
-
}
170
+
171
+
/*
172
+
* The new media player no longer generates events needed to auto start GrovvyRP.
173
+
* Unfortinutely have no choice but to disable auto start support for now.
174
+
*/
175
+
UnregisterTask();
176
+
config.RunWhenGrooveMusicOpens=false;
177
+
//DialogResult autoStartChoice = MessageBox.Show("Do you want to automatically start GroovyRP when Groove Music is opened?", "First Run Setup", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
178
+
//if (autoStartChoice.Equals(DialogResult.Yes))
179
+
//{
180
+
// RegisterTask();
181
+
// config.RunWhenGrooveMusicOpens = true;
182
+
//}
183
+
//else
184
+
//{
185
+
// UnregisterTask();
186
+
// config.RunWhenGrooveMusicOpens = false;
187
+
//}
181
188
182
189
DialogResulthideChoice=MessageBox.Show("Do you want to run GroovyRP in the background when it is opened?","First Run Setup",MessageBoxButtons.YesNo,MessageBoxIcon.Question);
0 commit comments