windows service path

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Vikas Kumar

    windows service path

    I have created a windows service
    that service downloads updated database after regular intervals
    till now i am setting path in app.config where it will download database and
    will use it from that location
    i want it to dynamically take path of folder where that service will get
    installed
    i don't have any idea abt remoting
    so pls help me by telling something more exact abt this


  • Ankit Aneja

    #2
    Re: windows service path

    You might want to look at Assembly.GetExe cutingAssembly( ) and work out
    where the assembly is, so you can make a path relative to that. (You
    can find the path using
    Assembly.GetMod ule(), then Module.FullyQua lifiedName.)

    "Vikas Kumar" <efextra@newsgr oups.nospamwrot e in message
    news:eXf7HglzGH A.4044@TK2MSFTN GP04.phx.gbl...
    >I have created a windows service
    that service downloads updated database after regular intervals
    till now i am setting path in app.config where it will download database
    and will use it from that location
    i want it to dynamically take path of folder where that service will get
    installed
    i don't have any idea abt remoting
    so pls help me by telling something more exact abt this
    >

    Comment

    • Steven Cheng[MSFT]

      #3
      Re: windows service path

      Hello Vikas,

      Do you think Ankit's suggestion on using the
      Assembly.GetExe cutingAssembly( ) to get the executing assembly(it is the
      windows service's exe image for your windows service case) and use its
      "Location" or "CodeBase" property to get the physical path information.

      BTW, if the path you want to use is fixed after you installed the windows
      service(its assembiles) on the target machine, you can also consider create
      a setup program for the windows service and get the installed location of
      the application(in programfiles folder...) and write it in your servcie
      application's app.config file. Do you think this also workable?

      Please feel free to post here if you have any further question on this.

      Sincerely,

      Steven Cheng

      Microsoft MSDN Online Support Lead



      =============== =============== =============== =====

      Get notification to my posts through email? Please refer to
      Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.

      ications.



      Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
      where an initial response from the community or a Microsoft Support
      Engineer within 1 business day is acceptable. Please note that each follow
      up response may take approximately 2 business days as the support
      professional working with you may need further investigation to reach the
      most efficient resolution. The offering is not appropriate for situations
      that require urgent, real-time or phone-based interactions or complex
      project analysis and dump analysis issues. Issues of this nature are best
      handled working with a dedicated Microsoft Support Engineer by contacting
      Microsoft Customer Support Services (CSS) at
      http://msdn.microsoft.com/subscripti...t/default.aspx.

      =============== =============== =============== =====



      This posting is provided "AS IS" with no warranties, and confers no rights.

      Comment

      • Steven Cheng[MSFT]

        #4
        Re: windows service path

        Hi Vikas,

        Have you got any progress on this issue or does the information in our
        previous reply helps some? If there is anything else we can help, please
        feel free to post here.

        Sincerely,

        Steven Cheng

        Microsoft MSDN Online Support Lead


        This posting is provided "AS IS" with no warranties, and confers no rights.

        Comment

        Working...