The windows since the launch of the application

Disclaimer: This article is a blogger original article, shall not be reproduced without the bloggers allowed. https://blog.csdn.net/qq125281823/article/details/89447000

Every power-on reset must open a bunch of applications, a lot of trouble.
So designing a .bat batch application to open the software, as follows:

echo start
title 一键启动

echo eclipse start
start /d "D:\eclipse" eclipse.exe

echo plsql start
start /d "D:\application\plsql_devlepment" plsqldev.exe

echo xshell start
start /d "C:\Program Files (x86)\NetSarang\Xshell 6" Xshell.exe

echo chrom64
start /d "D:\ChromePortable" ChromePortable.exe

echo chrom
start /d "C:\Program Files (x86)\Google\Chrome\Application" chrome.exe

echo foxmail
start /d "D:\Program Files\Foxmail 7.2" Foxmail.exe

echo 365日历
start /d "D:\application\365riliclient" 365riliClient.exe

echo qq
start /d "C:\Program Files (x86)\Tencent\QQ\Bin" QQScLauncher.exe

echo redis
start /d "C:\Users\Administrator\Desktop\redis" start.bat

echo weixin
start /d "C:\Program Files (x86)\Tencent\WeChat" WeChat.exe

echo navicat
start /d "C:\Program Files\PremiumSoft\Navicat Premium" navicat.exe

pause

rem exit

Guess you like

Origin blog.csdn.net/qq125281823/article/details/89447000