脚本批量打开文件夹

问题

电脑重启,每次打开很多文件夹
长时间不愁更年期电脑,电脑会变得很慢

想法:可不可以用脚本批量打开文件夹 和 相关程序?

参考
https://blog.csdn.net/qq_28351609/article/details/86229090
https://blog.csdn.net/try17875864815/article/details/107043390

浏览器打开网页:
start "" "浏览器路径" "网址链接"
start "" "D:\download\com\360cse\360ChromeX\Chrome\Application\360ChromeX.exe" "http://w3.huawei.com/itsmnext/#/serviceDesk/orderDetail/event/IM23030283580//"

批量打开文件夹 或 ppt等文件
start "" "路径" 
start "" "D:\download\program\idea\redis" 
start "" "D:\download\program\idea\Ruby31-x64"
start "" "C:\Windows\System32\cmd.exe"
start "" "D:\Onebox\huawei\xx\分解6.xmind"


bat 不能打开路径有中文的路径,解决办法:
https://blog.csdn.net/chengxuyuan99/article/details/109699726


变量定义

set question=my索引

start "" "D:\download\com\360cse\360ChromeX\Chrome\Application\360ChromeX.exe" "https://www.google.com.hk/search?q=%question%"
start "" "D:\download\com\360cse\360ChromeX\Chrome\Application\360ChromeX.exe" "https://www.baidu.com/s?tn=66051470_pg&ch=7&ie=utf-8&wd=%question%"
start "" "D:\download\com\360cse\360ChromeX\Chrome\Application\360ChromeX.exe" "https://so.csdn.net/so/search?q=%question%"

bat 脚本语法
https://blog.51cto.com/runcx/2465262