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 7851543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:12:32+00:00 2026-06-02T19:12:32+00:00

When I use VS2010 SP1, I write a windows service. Now I want to

  • 0

When I use VS2010 SP1, I write a windows service. Now I want to debug it without installing it. So I write code in Program.cs main method as below:

#if (DEBUG)
            ControllerNTService service =new ControllerNTService();
            Console.ReadLine();
#else
            System.ServiceProcess.ServiceBase[] ServicesToRun;
            ServicesToRun = new System.ServiceProcess.ServiceBase[] { new ControllerNTService() };
            System.ServiceProcess.ServiceBase.Run(ServicesToRun);
#endif

I expected to debug the windows service in VS 2010. But in VS, the code lines below shows gray. It means the gray codes are invalid, am I right?
(the two lines are gray)

ControllerNTService service =new ControllerNTService();
Console.ReadLine();

If the codes are valid, I think I can run into them.

Another question, using code above, when I press F5 to debug it, it shows that it is not able to debug it, I need to install the service first.

I hope someone encountered similar issue to guide me.
Have a nice day

  • 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-06-02T19:12:33+00:00Added an answer on June 2, 2026 at 7:12 pm

    You should check the active Build configuration of your project. It needs to be set to “DEBUG”. (I think it is set to “RELEASE” by what you describe)

    You can change the active Build configuration using Menu Build -> ConfigurationManager…-> In the Dialog set the Active Solution Configuratio to “DEBUG”.

    If you want to start your service from command line you also need to start it. Therefore you should add a Start method to your ControllerNTService that calls the protected OnStart method on the instance

    public class ControllerNTService{
       // additional service code
    
       internal void Start(string[] args) {
         base.OnStart(args);
       }
    
       internal void Stop() {
         base.OnStop();
       }
    }
    

    In your main method then you should call Start on the service instance.

    ControllerNTService service =new ControllerNTService();
    service.Start(args);
    Console.ReadLine();
    service.Stop();
    

    In addition to starting it is also a good idea to provide a method to stop the service (which calls the procted method OnStop). This method is called after the Console.ReadLine to stop the service.

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

Sidebar

Related Questions

I use VS2010, C# to develop Silverlight 4 app, I use following code in
Is it possible to target Windows XP SP2 with Visual C++ 2010 (VS2010) SP1?
The following code compiles with gcc 4.5.1 but not with VS2010 SP1: #include <iostream>
I want to use iis express with vs 2010 but i can't install sp1
I use VS2010 and I want to put a header (3-4 text lines) only
Possible Duplicate: Initializer syntax Short code sample to demonstrate (VS2010 SP1, 64-bit Win7): class
Hi Anybody knows how can I use VS2010 IDE to write my own language
I use VS2010, C# I want to read RSS content from other sites and
I use VS2010 to write a phonegap small example but I dont know why
I use VS2010, C#, ASP.NET; I read some data from SQL server and fill

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.