windows cmd 启动程序
@echo off
echo �[31m-----------------------------------
echo / Start notepad++ /
start "notepad++ client" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Notepad++\Notepad++"
echo / successfully open the notepad++ /
echo -----------------------------------
@echo off
echo �[32m-----------------------------------
echo / Start robo3t /
start "robo3t client" "C:\Users\huqingtao\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\robo3t"
echo / successfully open the robo3t /
echo -----------------------------------
@echo off
echo �[33m-----------------------------------
echo / Start Navicat /
start "Navicat client" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\PremiumSoft\Navicat Premium 12"
echo / successfully open the Navicat /
echo -----------------------------------
@echo off
echo �[34m-----------------------------------
echo / Start Postman /
start "Postman client" "C:\Users\huqingtao\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Postman\Postman"
echo / successfully open the Postman /
echo -----------------------------------
@echo off
echo �[35m-----------------------------------
echo / Start Chrome /
start "Chrome client" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Google Chrome"
echo / successfully open the Chrome /
echo -----------------------------------
@echo off
echo �[36m-----------------------------------
echo / Start weixin /
start "weixin client" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\weixin\weixin"
echo / successfully open the weixin /
echo -----------------------------------
@echo off
echo �[37m-----------------------------------
echo / Start IDEA /
start "IDEA client" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\JetBrains\IntelliJIDEA202011"
echo / successfully open the IDEA /
echo -----------------------------------
pause
::颜色输出 [ALT+27] [[] [31m-36m]
windows cmd 关闭程序
echo will kill all exe
taskkill /f /im Notepad++.exe /im robo3t.exe /im Navicat.exe /im Postman.exe /im chrome.exe /im wechat.exe /im idea64.exe
echo successfully stop
echo will shutdown system,do it continue?
pause
shutdown/s
网友评论