-------------------------没啥技术含量,纯属自娱自乐O(∩_∩)O~------------------------------
以下命令在dos命令窗口敲入或者使用bat文件
1.定时重新启动(5:20):
at 5:20 shutdown -r
2.定时关机
at 5:20 shutdown -s
3.一分钟倒计时计算机关机
shutdown -s -t 60
4.取消关机
shutdown -a
5.倒计时一分钟重新启动
shutdown -r -t 60
6.垃圾清理.bat
@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 Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾完成
echo. & pause
阅读(1424) | 评论(0) | 转发(0) |