I am trying to update a windows service that needs to run as Local Service. I am running the update from another windows service that can run as Local System, but once the update takes place, the original service fails to start. I can't see what is different about the service files after the update, but throws exceptions on starting up that it doesn't throw before the update.
How can I do this?
Thanks
Its sounds like you're doing things correctly. Attach a debugger to your service and figure out why its crashing. You can add a breakpoint to the entry point if the service (google for the specifics of how to do this in code in the language you're using).