Is there a program or utility to monitor the running process and automatically kill specific processes? My work laptop has a whole bunch of useless crap that I cannot uninstall. Some of these processes keeps popping a specific intervals and consume tons of cpu and make my laptop useless. I always have to manually kill these processes which is annoying. I can't uninstall these otherwise they will automatically reinstall.
|
feedback
|
A free and portable version can be downloaded here. however, you may consider the Pro version, to permanently block undesired processes:
Anvir Task Manager Pro is shareware, try before you buy. | ||||
|
feedback
|
|
Check this out, it seems to be exactly what you need. I found your site while looking for just this. http://www.zhacks.com/2010/05/01/killprocess-automatically-terminate-multiple-process/ | |||
|
feedback
|
|
You should try Sysinternals Process Explorer from Microsoft TechNet. | |||||||||||
feedback
|
|
If you know Microsoft Developer Tools, you can use PSAPI (Process status API) http://msdn.microsoft.com/en-us/library/ms684884%28VS.85%29.aspx to write nifty utility to do the things you want. | |||
|
feedback
|
|
you can make a vbscript, (or batch), then run as scheduled task,eg
save the above as terminate.vbs and put this as schedule task
| |||
|
feedback
|
|
Try attaching a debugger to the process and break. It shouldn't pop up anymore (since it's still running), but it shouldn't bother you anymore either (from the break). Apparently one of my co-workers used to do this to avoid automatic reboots after installing updates. | |||
|
feedback
|
|
Start msconfig from "Run program..." in the start menu. It allows you to disable programs started from the registry. The same goes for services too. But I wonder. Is it your own laptop, or a company laptop. If the latter, then it might be something configured in the group policy that installs the programs again. | |||
|
feedback
|