I have a few programs I would like to shutdown before I start gaming.

I managed to make a batch file for it, but 1 program doesn't isn't terminated.

The first two processes do shutdown, but for some reason Zonealarm doesn't. I also disabled the "Protect client" option in Zonealarm, but still, the process keeps on running.

TASKKILL /F /IM "Msseces.exe"
TASKKILL /F /IM "MsMpEng.exe"
TASKKILL /F /IM "zlclient.exe"  < this one doesn't shutdown
link|improve this question

79% accept rate
feedback

3 Answers

up vote 0 down vote accepted

The process is protected by a driver/kernel hook. There's no easy way to kill the ZoneAlarm main process... And you shouldn't want to kill it either...

link|improve this answer
1  
Well, I dont have any stranges purposes with it, but for gaming it's better. I'm also a bit lazy and find something very interesting if a proces can't be killed normally. Man over machine :) – Chris Aug 15 '10 at 22:38
@Chris don't get me wrong, I'm sure there is a way to kill it using 3rd party software but there's no standard batch like way as you are trying now. – BloodPhilia Aug 15 '10 at 22:50
thank you all. It's not killable on a normal way – Chris Aug 16 '10 at 11:59
feedback

Unfortunately, I have had similar results as you. I've found that taskkill doesn't always work. You might have better luck with Sysinternal's pskill. Sysinternals is free and a lot of people swear by it.

link|improve this answer
feedback

I would second using pskill over taskkill..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.