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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:04:55+00:00 2026-05-20T06:04:55+00:00

I have successfully passed parameters from Installutil to my serviceinstaller but i cannt seem

  • 0

I have successfully passed parameters from Installutil to my serviceinstaller but i cannt seem to pass these parameters to the Main(string[ args] function.
Here is how i am trying to do this ….if there is any better wayto do what i am doing please let me know

    protected override void OnAfterInstall(IDictionary savedState)
    {
        base.OnAfterInstall(savedState);
        string[] args = new string[2];
        args[0] = Context.Parameters["username"];
        args[0] = Context.Parameters["password"];
        new ServiceController(this.dataLoaderServiceInstaller.ServiceName).Start(args);
    }

and this is my Program.cs

    static void Main(string[] args)
    {
        // create a writer and open the file
        TextWriter tw = new StreamWriter(@"c:\\bw\\date.txt");

        // write a line of text to the file
        tw.WriteLine(args.Length);

        // close the stream
        tw.Close();
        ServiceBase[] ServicesToRun;
        ServicesToRun = new ServiceBase[] 
    { 
      new DataloaderService() 
    };
        ServiceBase.Run(ServicesToRun);
    }

the length of arugments that i am trying to write is always zero.
One more question will these parameters still exist after the computer/server restarts for maintenance?
Thanks in advance. 🙂

  • 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-20T06:04:55+00:00Added an answer on May 20, 2026 at 6:04 am

    Parameters you send using ServiceController.Start() method are available to you as parameters to the OnStart() method. If I’m not mistaken (It’s been a while since I needed to do this).

    The OnStart method’s signature is:

    OnStart(string[] args)
    

    However, if you need the parameters to be sent to the service each time the service is started (automatically) on boot, then you should look at the MSDN documentation on this. Specifically

    Process initialization arguments for
    the service in the OnStart method, not
    in the Main method. The arguments in
    the args parameter array can be set
    manually in the properties window for
    the service in the Services console.
    The arguments entered in the console
    are not saved; they are passed to the
    service on a one-time basis when the
    service is started from the control
    panel. Arguments that must be present
    when the service is automatically
    started can be placed in the ImagePath
    string value for the service’s
    registry key
    (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\). You can obtain the arguments
    from the registry using the
    GetCommandLineArgs method, for
    example: string[] imagePathArgs =
    Environment.GetCommandLineArgs();.

    http://msdn.microsoft.com/en-us/library/system.serviceprocess.servicebase.onstart.aspx

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

Sidebar

Related Questions

I have successfully created an app that reads from a bundled .plist file and
I have used InfoBox successfully in a fairly simple application but I am struggling
I have a range of parameters that are passed via jQuery Ajax to an
Have successfully gotten the csrf middleware working in express as per previous SO questions.
I have successfully managed to get System.Speech.Synthesis to read English text in arbitrary voices
I have successfully implemented interop beftween Win32 application and managed .Net dll as described
I have successfully upgraded an MFC application which was compiled with an old version
I have successfully used the Excel and Word addin templates in Visual studio 2008
I have successfully set up FILESTREAM on my SQL 2008 server; however I've noticed
I have successfully compiled lua in my mac. It works. It runs. Now, I

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.