Windows 7 kill process HD
tutorials and more : http://url.udf.me/RlrQJ Subscribe here : http://www.youtube.com/user/elakbar?sub_confirmation=1 Windows 7 - How to kill a process. This is important because sometimes applications halt and you cannot close them Kill a process with Task manager, command promt or PowerShell right-click taskbar and select Start Task Manager. You can also open Task manager by clicking Ctrl + Shift + Esc right-click the process you wanna kill and choose End Task. right-click the program you want to close , choose Go To Process right-click the selected process and choose End Process or End Process Tree. Then verify than you want to do that. Now we will do the same with command prompt. Click to Start icon, write command. Right-click command prompt and choose Run as administrator list the processes : tasklist kill the process : taskkill /IM chrome.exe /F Now we will do the same with PowerShell. Click to Start icon, write powershell. Right-click PowerShell and choose Run as administrator list the processes : Get-Process kill the process : Stop-Process -processname chrome