I am trying to start the services using the below SC command and service is not coming up.
sc start startliq_2090
output:
SERVICE_NAME: startliq_2090
TYPE : 10 WIN32_OWN_PROCESS
STATE : 2 START_PENDING
(NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
Here the status is 2 START_PENDING.
Then I tried to use the net command as below and it started the services.
net start startliq_2090
However it started with the net command.
Now I need to start the services in the remote machine, I tried with the below but it didn't worked for me.
net \\\"RemoteMachine" start startliq_2090
Even I tried with the giving the addition time using the timeout
timeout /t 60 /nobreak >NUL
but it still didn't worked for me.