Installing windows service in different machine
Context: I have 开发者_StackOverflowdeveloped a windows service in visual studio 2010 (c#) which opens an excel file and close after saving it.
Question: Is it possible to create any .exe file for this windows service? or How to install this service to another computer where visual studio is not installed. But I need to run this service in another computer where vidual studio is not installed.
thanks, pointtoshare
You can add a setup project to your solution and package the service into it.
Walkthrough on MS KB
精彩评论