加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stop.bat 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vanishi 提交于 2024-09-14 12:03 . xcms.4.501
@echo off
setlocal
chcp 65001
tasklist | findstr /i "xcms.exe" >nul
if errorlevel 1 (
echo xcms.exe is not running
) else (
echo xcms.exe is running
taskkill /IM xcms.exe /F
)
tasklist | findstr /i "xcms_admin.exe" >nul
if errorlevel 1 (
echo xcms_admin.exe is not running
) else (
echo xcms_admin.exe is running
taskkill /IM xcms_admin.exe /F
)
tasklist | findstr /i "xcms_core.exe" >nul
if errorlevel 1 (
echo xcms_core.exe is not running
) else (
echo xcms_core.exe is running
taskkill /IM xcms_core.exe /F
)
tasklist | findstr /i "xcms_zlm.exe" >nul
if errorlevel 1 (
echo xcms_zlm.exe is not running
) else (
echo xcms_zlm.exe is running
taskkill /IM xcms_zlm.exe /F
)
tasklist | findstr /i "xcms_media.exe" >nul
if errorlevel 1 (
echo xcms_media.exe is not running
) else (
echo xcms_media.exe is running
taskkill /IM xcms_media.exe /F
)
endlocal
echo xcms stop successfully
cmd
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化