Services Grants

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

    #1

    Services Grants


    Hello,

    I have a vb.net application that can create and copy files to a
    server. The problem comes when I put all that code in a Service but
    there is no way to access the server. Does anybody know if I the
    Windows application has special grants that the service has not??.

    Is there some code o configuration to make it work??

    Thanks for your help.


    Miguel Angel.

  • Phill W.

    #2
    Re: Services Grants

    Miguel wrote:
    I have a vb.net application that can create and copy files to a
    server. The problem comes when I put all that code in a Service but
    there is no way to access the server.
    Windows Services generally run under the "Local System" account, which
    cannot "see" the network.
    If you're on Windows 2003 Server, try running it under "Network System",
    otherwise, nominate a Domain account that will have network access and
    run it under that.

    Regards,
    Phill W.

    Comment

    Working...