window 开机启bat

77次阅读
没有评论

::创建好bat快捷键,win+R输入shell:startup 扔进去开机自动启动bat文件
::中文
chcp 65001
@echo off
echo 开机启动…

echo 延时5秒执行…
timeout /t 5 > NUL
echo 本地运行vue项目…
start cmd /k “cd /d D:vue-productusysresearch_mobile&npm run serve”

echo 延时5秒执行…
echo 打开phpstrom…
timeout /t 5 > NUL
start /d “D:1kaifahuanjingPhpStorm_2021.3_Portablebin” phpstorm64.exe

echo 延时20秒执行清除垃圾…
timeout /t 20 > NUL

@echo off
echo 正在进行系统垃圾清除,请耐心等待……
del /f /s /q %systemdrive%*.tmp
del /f /s /q %systemdrive%*._mp
del /f /s /q %systemdrive%*.log
del /f /s /q %systemdrive%*.gid
del /f /s /q %systemdrive%*.chk
del /f /s /q %systemdrive%*.old
del /f /s /q %systemdrive%recycled*.*
del /f /s /q %windir%*.bak
del /f /s /q %windir%prefetch*.*
rd /s /q %windir%temp & md %windir%temp
del /f /q %userprofile%cookies*.*
del /f /q %userprofile%recent*.*
del /f /s /q “%userprofile%Local SettingsTemporary Internet Files*.” del /f /s /q “%userprofile%Local SettingsTemp*.
del /f /s /q “%userprofile%recent*.*”
echo 清除系统垃圾完成!

echo 延时5秒执行…
timeout /t 5 > NUL
echo 打开新窗口的vue项目根目录…
::start cmd /k “cd /d D:vue-productusysresearch_mobile”

echo 完成了准备20退出了!
timeout /t 20 > NUL
exit;

正文完
 
评论(没有评论)