开发首选bat脚本,省时省力!(写的不好,多多见谅)

作为开发人员,每天上班启动软件花费大把时间,写个脚本,一劳永逸!

chcp 65001
@echo off
:: 获取管理员权限
::%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit

::start /d "C:\Users\23189\Desktop" 启动Nacos.bat
start cmd /k "cd /d D:\nacos\bin && startup.cmd -m standalone"
echo **************************start  Nacos***********************
ping 127.0.0.1 -n 3 >nul

::启动程序 exe 程序候面的参数代表用这个软件打开后面的文件夹
:: start  /d 路径 程序名.exe  文件夹
start /d "D:\idea\IntelliJ IDEA 2023.2.1\bin\" idea64.exe
echo ************************** start  IDEA ***********************
::等待3秒
ping 127.0.0.1 -n 3 >nul

start /d "C:\Program Files\Google\Chrome\Application" chrome.exe
echo ************************** start  谷歌 ***********************
ping 127.0.0.1 -n 3 >nul

start /d "D:\APP\Notepad++" notepad++.exe
echo ************************** start  notepad++ ***********************
ping 127.0.0.1 -n 3 >nul

start /d "D:\APP\db" dbeaver.exe
echo ************************** start  dbeaver ***********************
ping 127.0.0.1 -n 3 >nul

start /d "D:\APP\WeChat" WeChat.exe
echo ************************** start  微信 ***********************
ping 127.0.0.1 -n 3 >nul

start /d "D:\APP\Dict" YoudaoDict.exe
echo ************************** start  有道 ***********************
ping 127.0.0.1 -n 3 >nul


echo **************************启动完毕-5秒后窗口自动关闭*********************** 
start /min /w mshta vbscript:setTimeout("window.close()",5000)
::pause

::关闭/杀死进程 
:: 关闭idea
::TASKKILL /F /IM "idea64.exe" /T
::(关闭黑窗口)
::taskkill /f /IM "cmd.exe"

::注释内容

乱码处理   chcp 65001

前者为关闭回显,后者为打开回显 @echo off 与@echo on 

启动语法  start cmd /k " cmd中命令行里自定义的命令 "

输出内容   echo *******

延时处理   ping 127.0.0.1 -n 3 >nul

定时关闭   start /min /w mshta vbscript:setTimeout("window.close()",5000)

路径需要替换成自己的软件安装路径   start /d "C:\Program Files\Google\Chrome\Application" chrome.exe

欢迎访问我的主页,一起学习,共同(保护)颈部(进步)!
 

你可能感兴趣的:(idea)