When I try to start a service I created in Visual Studio I receive the following error:

System error 5 has occurred.

Access is denied.

I am running the command line with elevated privileges, so it's not that problem. Is there any place I can look to see what error is occuring.

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

To get it to work I needed to add permissions to the output bin\debug folder for my service project.

The Local Service account didn't have permissions to the output .exe file, and this was why the error was occuring.

link|improve this answer
Silly thing really. I simply ran the install from the debug folder which I thought would place the actual executable in the proper directory. The permissions did the trick. – Jeff.Crossett Apr 21 '09 at 12:39
Worked for me too - thanks. I just wanted to try it out and installing from a Debug folder was the lazy option :-) – rohancragg Oct 25 '09 at 12:54
It's a good thing that you posted this answer when you found the solution yourself. I had the same problem and it helped me. Thanks :-D – Dariusz Walczak Aug 11 '10 at 11:37
You saved my life.... – Anthony Sep 1 '10 at 6:56
1  
I love you - saved my night! – Niklas Ringdahl Sep 5 '11 at 21:24
feedback

I see you've fixed the problem; but in reality, you shouldn't normally be running the service from a project's bin folder anyway - the files should be put somewhere project and profile independent (for example, under program files). For debugging purposes (when it will be in the bin folder), you can detect whether it is a service in Main(), and if it is being run interactively just run the service code directly, rather than the usual service-start setup.

You can detect either by adding a command line argument, or you can try checking Environment.UserInteractive.

link|improve this answer
Yea, in my scenario is was in DEV, and a post-build event deploys and starts the service for me, ready for me to attach to it. – Daniel O Feb 23 '09 at 0:45
This is true, but it's also important to debug the service running as the Local Service user, otherwise you might run into unexpected permissions issues when running in production. – notJim Mar 15 '11 at 17:05
Marc's suggestion is the proper way to do it :) If you just want to get past the error, then see the accepted answer – Daniel O Sep 13 '11 at 14:42
feedback

I had the same problem because my project and its source code was in a folder that had NTFS's Encrypting File System (EFS) enabled. This caused by compiled assemblies being encrypted aswell and the user running my service didn't have permissions to decrypt them. Removing EFS was the easy solution for this. It can be done by command line using CIPHER.EXE, which is a Windows tool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.