windows脚本 .dat启动多个exe程序
创建.dat文件:
通过新建记事本,保存文件的后缀设置为.dat即可
.dat文件内容:
对当前目录下的exe程序进行执行,关闭命令行窗口时,终止进程
chcp 65001>nul
@echo off
echo ***************************************************************
echo *****************欢迎来到 演示平台*******************************
echo ***************************************************************
echo 程序正在安装中,请稍后...
set current_path=%cd%
start %current_path%\lte_analysis.exe
start %current_path%\location\location.exe
start %current_path%\Dcyspt.exe
timeout /T 5 /NOBREAK>nul
echo 程序安装完毕,使用过程中请勿关闭该窗口...
echo 注:程序使用完毕,请在该窗口按Enter键进行程序关闭...
pause>nul
taskkill /f /im "lte_analysis.exe"
taskkill /f /im "location.exe"
taskkill /f /im "Dcyspt.exe"