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:42] 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 9: Line 9:
 DISPLAY_NAME: Print Spooler DISPLAY_NAME: Print Spooler
 </code> </code>
-  Now we know the right name of service (SERVICE_NAME: Spooler) and we can find its PID+  Now we know the right name of service (SERVICE_NAME: Spooler) and we can find its PID
  
 <code> <code>
 C:\Windows\system32>sc queryex Spooler |findstr PID C:\Windows\system32>sc queryex Spooler |findstr PID
         PID                : 3480         PID                : 3480
-        </code>+</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> 
microsoft/misc/koll_proc.1570696941.txt.gz · Last modified: 2019/10/10 08:42 by rplecko