bat 命令 判断如果该exe程序已运行则马上关闭并且重新运行该软件 执行一次 求代码

2025-01-02 20:30:08
推荐回答(2个)
回答1:

@echo off
set /p a=请输入进程(如QQ.exe):
tasklist | findstr "%a%"||(echo 进程未启动&pause>nul&exit)
taskkill /im "%a%"
wmic process where name="%a%" get executablepath>$
for /f "tokens=*" %%i in ('more +1 $') do start "" %%i
del $
pause

可根据进程自动找到文件存放位置并启动,文件已上传


回答2:

一行代码搞定
打开记事本
tasklist可以查询运行程序名
命令行输入第一句,回车看效果,记事本被结束。
命令行直接输入
for /f "tokens=1 delims= " %i in ('tasklist') do (if "%i"=="notepad.exe" TASKKILL /F /IM notepad.exe&&start notepad.exe)

批处理中%i要改为%%i了
for /f "tokens=1 delims= " %%i in ('tasklist') do (if "%%i"=="notepad.exe" TASKKILL /F /IM notepad.exe&&start notepad.exe)