批量打开文件夹下所有的指定文件(批处理)

@echo off
forfiles /p "e:xx" /m yyy*.* /s /c "cmd /c e:xxstartone.bat @PATH"
@echo off
start %1 %1
timeout /t 1

 批量杀掉进程

taskkill /F /IM yyyyyy.exe
原文地址:https://www.cnblogs.com/zhenfei/p/13155268.html