美文网首页
【Win10】快捷关机与清理垃圾

【Win10】快捷关机与清理垃圾

作者: 顾先生 | 来源:发表于2020-04-03 00:04 被阅读0次
  • 关机
  • 清理垃圾
  • 微信多开

这些快捷方式需要在桌面上创建一个txt文件,将内容复制进去,然后将文件后缀名 .txt 改为 .bat 即可


关机:

slidetoshutdown

清理垃圾:

@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%\ercycled\*.*
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 Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo Çå³ýϵͳÀ¬»øÍê³É£¡
echo. & pause

微信多开:

start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
start "" "D:\Program Files (x86)\Tencent\WeChat\WeChat.exe"

相关文章

网友评论

      本文标题:【Win10】快捷关机与清理垃圾

      本文链接:https://www.haomeiwen.com/subject/hsbqphtx.html