User Tools

Site Tools


microsoft:misc:koll_proc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
microsoft:misc:koll_proc [2019/10/10 08:36] rpleckomicrosoft:misc:koll_proc [2019/10/10 09:12] (current) rplecko
Line 1: Line 1:
 === Kill process / Stop hung service === === Kill process / Stop hung service ===
  
-  Start CMD with administrative rights +  Start CMD with administrative rights 
-  Find  service you want to kill (in this case "spooler")+  Find  service you want to kill (in this case "spooler")
  
 <code> <code>
Line 8: Line 8:
 SERVICE_NAME: Spooler SERVICE_NAME: Spooler
 DISPLAY_NAME: Print Spooler DISPLAY_NAME: Print Spooler
 +</code>
 +  * Now we know the right name of service (SERVICE_NAME: Spooler) and we can find its PID
 +
 +<code>
 +C:\Windows\system32>sc queryex Spooler |findstr PID
 +        PID                : 3480
 +</code>
 +  * With known PID we can now kill the process
 +<code>
 +taskkill /f /pid 3480
 +SUCCESS: The process with PID 3480 has been terminated
 </code> </code>
  
microsoft/misc/koll_proc.1570696603.txt.gz · Last modified: 2019/10/10 08:36 by rplecko