脚本批量处理,一起行启动多个软件。

每天开机都要打开这么多的软件。非常烦。直接写个脚本批量处理。双击ok。提高效率,节约时间。
这里写图片描述

@echo off  
echo starting myeclipse
start /min "" "D:\MyEclipse-8.6\myeclipse.exe"  

echo starting idea64
start /min "" "D:\Program Files\JetBrains\IntelliJ IDEA 2017.2.6\bin\idea64.exe"

echo starting chrome
start /min "" "C:\Users\10637\AppData\Local\Google\Chrome\Application\chrome.exe"  

echo starting 360se
start /min "" "D:\Users\10637\AppData\Roaming\360se6\Application\360se.exe"  

echo starting SQLyog
start /min "" "E:\tool\SQLyog10.2\SQLyog.exe"  
exit 

@echo off start cmd%0
第二句是打开CMD窗口,第三句%0是再运行批处理本身,就是再打开CMD窗口。后果是不断的打开CMD窗口,直至资源耗尽,死机,十分邪恶

猜你喜欢

转载自blog.csdn.net/qq_20516587/article/details/80604431