Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6825985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:05:41+00:00 2026-05-26T22:05:41+00:00

I have a console application that runs on my computer. When the application throws

  • 0

I have a console application that runs on my computer. When the application throws an exception, I want to restart the application. How can I accomplish this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T22:05:42+00:00Added an answer on May 26, 2026 at 10:05 pm

    You can instantiate a Timer that check every n seconds if the process is alive, for example you can write i function like the following to verify if the process is alive :

     public static bool ProcessExist(string processname)
            {
                Process[] aProc = Process.GetProcessesByName(processname);
                return (aProc.Length > 0);
            }
    

    Every Tick of the timer you can check if the process is alive or not, if not you can relaunch it.

    Another method could be use a ManagementEventWatcher for get fired an event every time that a process stop on your machine, so for example :

    ManagementEventWatcher stopWatchProcess = new ManagementEventWatcher(new WqlEventQuery("SELECT * FROM Win32_ProcessStopTrace"));
                    stopWatchProcess.EventArrived += new EventArrivedEventHandler(stopWatchProcess_EventArrived);
                    stopWatchProcess.Start();
    
    
    private void stopWatchProcess_EventArrived(object sender, EventArrivedEventArgs e) {
                string processName = (string)e.NewEvent.Properties["ProcessName"].Value;
                if(processName == "yourprocess.exe") {
                  //Do Something
         }
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a little console application that uses s#arp. I can create an
I have a C# console application that calls SSRS soap based webservice (service runs
I have a C++ Win32 application that runs as a console app if run
Say I have a console application that runs on Machine1. What is happening in
I have a simple console application that runs calculations in several threads (10-20 of
I have a powershell script that runs a console .exe application. The console application
I have an SBT scala application that runs fine using sbt run. However, this
I have a console application that runs some temperamental hardware. If I don't detach
I currently have a small console application that runs a number of Tasks (using
Basically, I have an application that runs every 15 minutes. I would like this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.