Windows Services Multiple Install
Basically, the problem that I am is that i am writing a windows service that I am going to deploy onto a server. The purpose of the service is to query multiple databases, do some data processing and the store the results into a seperate database. As I am working on this service, testing and debugging, I cannot find a good way to compile and install to check my work.
Right now the best method that I have is disabling the service, uninstalling it, rebooting the server and then reinstalling. is there a better way to do implement my code changes without having to reboot the server?

