发布网友 发布时间:2022-04-24 09:21
共3个回答
热心网友 时间:2023-10-09 07:51
@echo off
if "%1" == "h" goto code
mshta vbscript:createobject("wscript.shell").run("%~fs0 h",0)(window.close)&&exit
:code
:loop
for /f "tokens=1 delims= " %%i in ('tasklist ^|findstr "up"') do (
taskkill /f /im %%i
)
ping -n 1200 127.1>nul
goto :loop
如果需要结束它,请通过任务管理器结束
热心网友 时间:2023-10-09 07:51
:again
tasklist|findstr "*up*.exe"&&taskkill /f /im "*up*.exe"
ping /n 1200 127.1>nul
goto again
热心网友 时间:2023-10-09 07:52
@echo off&color bf&title 进程专杀!
:loop
for /f "skip=1 tokens=1" %%i in ('tasklist ^|findstr "up"') do (
if not %%i==" " taskkill /f /im %%i)
ping -n 20 127.1>nul&goto loop