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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:21:04+00:00 2026-05-30T19:21:04+00:00

The problem exists. Need to install the service on your computer. And run it.

  • 0

The problem exists. Need to install the service on your computer. And run it. The code works, but when the program is run by an administrator. Here is my source code:

namespace SvcInstaller
{
    public class ServiceInstaller
    {
        #region Private Variables
        /* bla bla bla */
        #endregion DLLImport

    #region Main method + testing code
    [STAThread]
    public static void Setup()
    {
        // TODO: Add code to start application here
        #region Testing
        // Testing --------------
        string svcPath;
        string svcName;
        string svcDispName;
        //path to the service that you want to install
        svcPath = "\"" + AppDomain.CurrentDomain.BaseDirectory + "data\\ma.exe\"" + " -service";
        svcDispName = "Main Service";
        svcName = "srv";
        ServiceInstaller c = new ServiceInstaller();

        c.InstallService(svcPath, svcName, svcDispName);

        #endregion Testing
    }
    #endregion Main method + testing code - Commented

    public bool InstallService(string svcPath, string svcName, string svcDispName)
    {
        #region Constants declaration.
        int SC_MANAGER_CREATE_SERVICE = 0x0002;
        int SERVICE_WIN32_OWN_PROCESS = 0x00000010;
        //int SERVICE_DEMAND_START = 0x00000003;
        int SERVICE_ERROR_NORMAL = 0x00000001;
        int STANDARD_RIGHTS_REQUIRED = 0xF0000;
        int SERVICE_QUERY_CONFIG = 0x0001;
        int SERVICE_CHANGE_CONFIG = 0x0002;
        int SERVICE_QUERY_STATUS = 0x0004;
        int SERVICE_ENUMERATE_DEPENDENTS = 0x0008;
        int SERVICE_START = 0x0010;
        int SERVICE_STOP = 0x0020;
        int SERVICE_PAUSE_CONTINUE = 0x0040;
        int SERVICE_INTERROGATE = 0x0080;
        int SERVICE_USER_DEFINED_CONTROL = 0x0100;
        int SERVICE_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED |
        SERVICE_QUERY_CONFIG |
        SERVICE_CHANGE_CONFIG |
        SERVICE_QUERY_STATUS |
        SERVICE_ENUMERATE_DEPENDENTS |
        SERVICE_START |
        SERVICE_STOP |
        SERVICE_PAUSE_CONTINUE |
        SERVICE_INTERROGATE |
        SERVICE_USER_DEFINED_CONTROL);
        // int SERVICE_AUTO_START = 0x00000002;

        int SERVICE_DEMAND_START = 0x00000003;// с ручной запуск
        #endregion Constants declaration.
        try
        {
            IntPtr sc_handle = OpenSCManager(null, null, SC_MANAGER_CREATE_SERVICE);

            if (sc_handle.ToInt32() != 0)
            {
                //IntPtr sv_handle = CreateService(sc_handle, svcName, svcDispName, SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_NORMAL, svcPath, null, 0, null, null, null);
                string lpDependencies = "Tcpip";// зависимости
                IntPtr sv_handle = CreateService(sc_handle, svcName, svcDispName, SERVICE_ALL_ACCESS, SERVICE_WIN32_OWN_PROCESS, SERVICE_DEMAND_START, SERVICE_ERROR_NORMAL, svcPath, null, 0, lpDependencies, null, null);

                if (sv_handle.ToInt32() == 0)
                {
                    CloseServiceHandle(sc_handle);
                    return false;
                }
                else
                {
                    //now trying to start the service
                    int i = StartService(sv_handle, 0, null);
                    // If the value i is zero, then there was an error starting the service.
                    // note: error may arise if the service is already running or some other problem.
                    if (i == 0)
                    {
                        //Console.WriteLine("Couldnt start service");
                        return false;
                    }

                    CloseServiceHandle(sc_handle);
                    return true;
                }
            }
            else
                //Console.WriteLine("SCM not opened successfully");
                return false;
        }
        catch (Exception e)
        {
            throw e;
        }
    }

Return code is 0 in the function. The challenge is to establish a service that does not matter who started the program.

  • 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-30T19:21:06+00:00Added an answer on May 30, 2026 at 7:21 pm

    Calling OpenSCManager with the SC_MANAGER_CREATE_SERVICE flag requires administrator access.

    From MSDN:

    Only processes with Administrator privileges are able to open handles
    to the SCM that can be used by the CreateService and
    LockServiceDatabase functions.

    If you think about it, it makes sense that you would need admin rights to install a new service.

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

Sidebar

Related Questions

I know that can co-exists with web form no problem as Hanselman mention here
I need to install older version of mysql server on mac os, but I
i have a closed source program that prints output to standard output. i need
Basically, my problem is that i need to send data from my service (started
The problem exists in my editme.aspx page. Error 1 The type 'editme' already contains
There exists (for me) a problem with MessageBox show. My app is multilingual (English/German).
Problem: I have two spreadsheets that each serve different purposes but contain one particular
I am faced with the following problem. I need to (de)serialize (binary) a stream
Does a 64-bit CruiseControl.NET exist or do I need to install the 32-bit version?
The problem: I can't get my java app to run after compiling. My guess

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.