I've seen numerous questions along these lines, but they're either unanswered or the answers don't work/apply to my situation.
I made a basic Windows Service project in C# (using VS 11 Dev Preview, but likely should be similar in 2010). It compiles just fine. When I run the InstallUtil.exe on the compiled .exe, It spits out the following to the command line:
Running a transacted installation.
Beginning the Install phase of the installation. See the contents of the log file for the C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exe assembly's progress. The file is located at C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.InstallLog. Installing assembly 'C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exe'. Affected parameters are: logtoconsole = logfile = C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.InstallLog
assemblypath = C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exeThe Install phase completed successfully, and the Commit phase is beginning. See the contents of the log file for the C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exe assembly's progress. The file is located at C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.InstallLog. Committing assembly 'C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exe'. Affected parameters are: logtoconsole = logfile = C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.InstallLog
assemblypath = C:\Users\gzak\Documents\Visual Studio 11\Projects\mysol\myproj\bin\Debug\myproj.exeThe Commit phase completed successfully.
The transacted install has completed.
So it looks like everything installs properly, but it doesn't show up in the services list, and I've tried many times and many refreshes; it's simply not there. A couple things to note:
- myproj.exe has a dependency on some.dll, which is also there in the output folder (in case having a dependency somehow requires a different process).
- I've tried it with and without adding an installer class to the project. Does it have to be added to a separate project for it to work? I get a different message in the command line which complains about the lack of an installer if I don't add the installer class to the project, and since it goes away when I do, I figure it's working... Or not?
Also, are there any alternatives to Windows Services? If they're this painful to use in general, heck, I'd almost rather just manually have my program set to launch on startup the old fashioned way and leave it running without going through the Service manager at all. At least that way I can start/stop it in the debugger at will. Microsoft really dropped the ball here.