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

  • Home
  • SEARCH
  • 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 4048718
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T13:51:09+00:00 2026-05-20T13:51:09+00:00

What I have is a windows Service calling a console application that i’m running.

  • 0

What I have is a windows Service calling a console application that i’m running. However, when the service run it again, the console app doesn’t close. is it best to have the app close itself when it’s done running or have the service close it? In either cause can you give an example on how to close it?

while (true)
        {
            try
            {
                string ectory = @"C:\Program Files\Checker.exe";
                EventLog.WriteEntry("PriceGrab", "Calling executeable");
                var p = Process.Start(ectory);
                if (!p.WaitForExit(30000))
                {

                    p.Kill();
                }
                System.Threading.Thread.Sleep(600000); // wait 10 minutes
            }
            catch (Exception ex)
            {

                EventLog.WriteEntry("PriceGrabCall", ex.Message, EventLogEntryType.Warning);

            }

This is what I have inside of my Service executable. This will not close the app. The app is designed to run once every 10 minutes. N/M works now…

  • 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-20T13:51:10+00:00Added an answer on May 20, 2026 at 1:51 pm

    It depends on the nature of the console app. If it’s like a server app and it won’t quit (has an infinite loop…), then you just start it once and only kill it when you don’t need it anymore (or just leave it running…). If it’s supposed to exit, you can give it some time to close itself, and then kill it if it didn’t finish:

    var p = Process.Start( ... );
    
    // ...
    
    if (!p.WaitForExit(5000)) { // wait 5 seconds
      p.Kill();
    }
    

    But be careful when killing processes like this. You might lose the work that they were doing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.