Open an elevated command prompt:
powershell -Command "Start-Process cmd -Verb RunAs"
To stop the Gremlin Daemon:
net stop gremlind
To start the Gremlin Daemon:
net start gremlind
To kill the Gremlin process if it is stuck in stopping:
sc queryex gremlind
Example output:
sc queryex gremlind SERVICE_NAME: gremlind TYPE : 10 WIN32_OWN_PROCESS STATE : 4 RUNNING (STOPPABLE, NOT_PAUSABLE, ACCEPTS_PRESHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0 PID : 17792 FLAGS :
From the same command prompt type in:
taskkill /f /pid 17792 SUCCESS: The process with PID 17792 has been terminated.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article