How to update an installed Windows service?
I have written a Windows service in C#. I have since installed it on my machine, and it runs just fine. When you install a service, does the exe get copied somewhere? Or does it point to my bin folder? This is for me to know that when I update my code from time to time, do I have to uninstall and re-install my service to update it? If the Windows service's location has not changed and the name of its executable has not changed, you should not have to uninstall and reinstall it. You can simply stop the service, update its executable with a new version, and start it again. This approach worked