SEBWIN-633: Fixed bug where ease of access configuration monitoring would trigger even though the service component is active.
This commit is contained in:
parent
9b8d1fc3b2
commit
e2e5d5ade8
1 changed files with 4 additions and 1 deletions
|
@ -359,7 +359,10 @@ namespace SafeExamBrowser.Client
|
||||||
timer.Interval = TEN_MINUTES + (new Random().NextDouble() * FIVE_MINUTES);
|
timer.Interval = TEN_MINUTES + (new Random().NextDouble() * FIVE_MINUTES);
|
||||||
timer.Start();
|
timer.Start();
|
||||||
|
|
||||||
registry.StartMonitoring(RegistryValue.MachineHive.EaseOfAccess_Key, RegistryValue.MachineHive.EaseOfAccess_Name);
|
if (Settings.Service.IgnoreService)
|
||||||
|
{
|
||||||
|
registry.StartMonitoring(RegistryValue.MachineHive.EaseOfAccess_Key, RegistryValue.MachineHive.EaseOfAccess_Name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void VerifySessionIntegrity()
|
private void VerifySessionIntegrity()
|
||||||
|
|
Loading…
Reference in a new issue