CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Guest

    NT Service accessing network resources...?

    I have an NT Service that spawns numerous programs as child processes. These program all require access to various files over the network. These programs are unable to access the required files. Is this because they inherit the service's characteristic of not being allowed network access? If so, how can I spawn these programs so they do have network access?

    Thanks,
    Matt Johnson


  2. #2
    Guest

    Re: NT Service accessing network resources...?

    It's worth trying to run the service under an account that does have network access. Use Control Panel->Services->Startup: if it is running as the System Account then change it.


  3. #3
    Join Date
    May 1999
    Posts
    7

    Re: NT Service accessing network resources...?

    Only three letters come to mind: RPC. That's what I've done to accomplish IPC over a network. It's pretty solid and not that difficult once you have the right docs.


    Freedom is knowing you can burn all your software without losing a minute's sleep.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured