add try/catch around service check

This commit is contained in:
Luke Pulverenti 2017-09-02 15:22:01 -04:00
parent 0fd4b0ffca
commit e5c2e4b28d

View file

@ -195,6 +195,8 @@ namespace MediaBrowser.ServerApplication
}
private static bool IsAlreadyRunningAsService(string applicationPath)
{
try
{
var serviceName = BackgroundService.GetExistingServiceName();
@ -220,6 +222,11 @@ namespace MediaBrowser.ServerApplication
return true;
}
}
}
catch (COMException)
{
// Catch errors thrown due to WMI not being initialized
}
return false;
}