how to prevent or terminate time's up screen from windows family safety windows service csharp

Code Example - how to prevent or terminate time's up screen from windows family safety windows service csharp

                
                        private void PreventTimesUpScreen() {
  System.Timers.Timer tm = new System.Timers.Timer();
  tm.Elapsed += PreventTick;
  tm.Start();
}
private void PreventTick(object sender, System.Timers.ElapsedEventArgs e) {
  foreach (Process p in Process.GetProcessesByName("WpcMon")) {
    p.Kill();
  }
}