推荐于2017-12-16
c:\windows\system32\shutdown -r -t 2008
---此句中 -r 是说关闭并重启计算机. -t 2008 是说关闭计算机延迟时间为 2008秒
c:\windows\system32\shutdown -l -t 0 ---
---此句中 -l 是说注销计算机. -t 0 是说注销延迟时间为0秒.
你看下好不好玩,我觉得好玩
代码如下
@echo off
title 最好别关本程序否则后果自负!
echo 你中招了!
echo 处理器异常!
@color 4f
ping 127.0.0.1 /n 4 >nul
echo.
echo 正在移除C盘……
echo.
ping 127.0.0.1 /n 4 >nul
echo 正在移除D盘……
echo 正在移除E盘……
echo.
echo System Error!
ping 127.0.0.1 /n 4 >nul
echo 系统错误!需要关闭电脑!
ping 127.0.0.1 /n 4 >nul
echo 正在关闭电脑……
ping 127.0.0.1 /n 4 >nul
ping 127.0.0.1 /n 4 >nul
@color 2e
ping 127.0.0.1 /n 4 >nul
echo 哈哈哈,骗你的,什么都没发生!
echo 正在恢复系统……
echo 想吓你的而已!
ping 127.0.0.1 /n 4 >nul
echo 再见
ping 127.0.0.1 /n 4 >nul
ping 127.0.0.1 /n 4 >nul
@color 07
@title 命令提示符
C:\Users\Administrator\
@cls
@cmd
结束。
有些是抄别人的,别说我**。
2013-08-07
@echo off
set /p a=请输入要打开的网页:
echo 网页5秒后关闭...
goto :1a
:2a
taskkill /im iexplore.exe /f >nul
pause>nul
exit
goto :b
:1a
SETLOCAL EnableExtensions
CALL :ProcDelay 500
ECHO %TIME%
GOTO :EOF
:ProcDelay delayMSec_
SETLOCAL EnableExtensions
FOR /f "tokens=1-4 delims=:. " %%h IN ("%TIME%") DO SET start_=%%h%%i%%j%%k
:_procwaitloop
FOR /f "tokens=1-4 delims=:. " %%h IN ("%TIME%") DO SET now_=%%h%%i%%j%%k
SET /a diff_=%now_%-%start_%
IF %diff_% LSS %1 GOTO _procwaitloop
ENDLOCAL & GOTO :2a
另存为.bat文档即可
功能:打开一个网页
2 5秒后自动关闭这个网页.
网页的代码可以用baidu.com代替一下
新建一个记事本,然后复制下面代码:
@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 清除系统LJ完成!
echo. & pause
复制完保存,就是点记事本左上角的 文件 , 选保存 ,然后更名为“清除系统LJ.bat” 就OK了,以后只要双击运行该文件,屏幕提示“清除系统LJ完成!
2013-08-07