Hello,
I have a windows service in C # that I have to install on several clients. My problem is that on some clients I can install and it works normally, however on some clients I can install the service but it does not start at all. I barely start the service and it gives me the message
"Error 1053: The service can not be initialized because it did not respond to the request in a timely manner"
If it was a service error I would be able to see the logs in the Event Viewer of windows, but the problem is that no log appears, which is leading me to believe that the service is not even being and the error occurs before it starts.
One solution I tried so far was to create a key in the windows registry called ServicesPipeTimeout hoping the error was that the wait time for the start of the service was very small, but unfortunately it did not solve .
On my computer and many other clients the service works normally, however in a few it presents this error, it may be some version problem, but these clients have nothing in common. How to proceed?
Hugs!