Social Icons

Pages

Create scheduled application re starter C# WPF


This is a simple way to restart your application at predefined time of a day.
in this example Im gonna restart my application everyday at 6 o'clock morning.


DispatcherTimer timer = new DispatcherTimer();
private void RestartMyApplication()
{
timer.Interval = TimeSpan.FromSeconds(1.0);
timer.Start();
timer.Tick += new EventHandler(delegate(object s, EventArgs a)
{
if (DateTime.Now.ToString("hh:mm:ss tt") == "06:00:00 AM")
{
//start new application
System.Diagnostics.Process.Start(Application.ResourceAssembly.Location);
Environment.Exit(0); //exit this application
}
});
}
view raw Restarter.cs hosted with ❤ by GitHub

Enjoy !!!



No comments:

Post a Comment