论坛: 编程破解 标题: 怎么编一个能让机器自动重启20遍的程序?? 复制本贴地址    
作者: poq [p0q]    论坛用户   登录
你好,我想请教你一个问题。
怎么能使计算机设置成自动重启一个值如(20遍),需要做哪些具体的操作? 谢谢!!


地主 发表时间: 06/08 17:05

回复: toyotaltf [toyotaltf]   论坛用户   登录
为什么是20遍呢
可以无限撒

B1层 发表时间: 06/09 13:29

回复: maomao520 [maomao520]   论坛用户   登录
不会,这不是破坏机器吗?

B2层 发表时间: 06/09 13:54

回复: vking [vking]   论坛用户   登录
还不如直接让机子启动不起。

B3层 发表时间: 06/09 14:18

回复: feishi [feishi]   论坛用户   登录
不过我还想用他做工作呢!谢谢

B4层 发表时间: 06/09 17:27

回复: windflower [windflower]   论坛用户   登录
  用VB新建一个工程,用API函数读取设置注册表,每次启动时读取一个值,如果小于20则加1,并写回,并调用API函数进行重启,否则关闭该程序。如果需要请与我联系我可以帮忙。

B5层 发表时间: 06/09 19:01

回复: poq [p0q]   论坛用户   登录
看到你的回复我很高兴!
可我对程序很陌生,你能帮我我很高兴。
我的QQ:118159106 
你可以回复我,也可以用QQ发给我。
谢谢!

B6层 发表时间: 06/10 18:19

回复: poq [p0q]   论坛用户   登录
看到你的回复我很高兴!
可我对程序很陌生,你能帮我我很高兴。
我的QQ:118159106 
你可以回复我,也可以用QQ发给我。
谢谢! 



B7层 发表时间: 06/10 18:21

回复: windflower [windflower]   论坛用户   登录
  这样吧,程序是在98系统下运行的,不知有用么。
email:000wind@163.com

B8层 发表时间: 06/10 22:39

回复: shesh [shesh]   版主   登录
简单啊,用ExitWindowEx()
然后用文件或者注册表做标记,到20次就不干了.

B9层 发表时间: 06/11 08:44

回复: plycy [plycy]   论坛用户   登录
我看不如写个注册表角本.在DOS下运行就让电脑永远重启.要破解时,再运行另一个注册表角本就能正常进98这不更好么?

B10层 发表时间: 06/11 08:56

回复: wkbsb [wkbsb]   论坛用户   登录
用*.INI文件记录机器重启的次数
每重启一次,20 -1 ,然后把这个程序的路径写到注册表的RUN里,以便每次启动的时候加载。 

重启用ExitWindowEx()这个函数~~


B11层 发表时间: 06/12 09:29

回复: gaozizhan [gaozizhan]   论坛用户   登录
能不能公布给大家这个这ini的程序呀

B12层 发表时间: 06/14 20:33

回复: yuanrulai [yuanrulai]   论坛用户   登录
你们真他妈的混蛋
这不是害人吗

B13层 发表时间: 04-03-26 21:33

回复: sniper167 [sniper167]   论坛用户   登录
那要看是什麽人在用了

B14层 发表时间: 04-03-26 22:13

回复: zml2236 [zml2236]   论坛用户   登录
我记得最简单的还是用批处理,
在Autoexec.bat中写

B15层 发表时间: 04-03-27 00:59

回复: zml2236 [zml2236]   论坛用户   登录
大家看看我这个就楼主的想法做的BAT,为什么不对?
----------------------------------------------------------------------@echo off
if exist 1.txt goto 1
if exist 2.txt goto 2
if exist 3.txt goto 3
if exist 4.txt goto 4
if exist 5.txt goto 5
if exist 6.txt goto 6
if exist 7.txt goto 7
if exist 8.txt goto 8
if exist 9.txt goto 9
if exist 10.txt goto 10
if exist 11.txt goto 11
if exist 12.txt goto 12
if exist 13.txt goto 13
if exist 14.txt goto 14
if exist 15.txt goto 15
if exist 16.txt goto 16
if exist 17.txt goto 17
if exist 18.txt goto 18
if exist 19.txt goto 19
if exist 20.txt goto 20
if exist 21.txt goto clear
goto end
:1
ren 1.txt 2.txt
goto close
:2
ren 2.txt 3.txt
goto close
:3
ren 3.txt 4.txt
goto close
:4
ren 4.txt 5.txt
goto close
:5
ren 5.txt 6.txt
goto close
:6
ren 6.txt 7.txt
goto close
:7
ren 7.txt 8.txt
goto close
:8
ren 8.txt 9.txt
goto close
:9
ren 9.txt 10.txt
goto close
:10
ren 10.txt 11.txt
goto close
:11
ren 11.txt 12.txt
goto close
:12
ren 12.txt 13.txt
goto close
:13
ren 13.txt 14.txt
goto close
:14
ren 14.txt 15.txt
goto close
:15
ren 15.txt 16.txt
goto close
:16
ren 16.txt 17.txt
goto close
:17
ren 17.txt 18.txt
goto close
:18
ren 18.txt 19.txt
goto close
:19
ren 19.txt 20.txt
goto close
:20
ren 20.txt 21.txt
goto close
:close
rundll32.exe user.exe,exitwindows
goto end
:clear
del 21.txt
:end
--------------------------------------------



B16层 发表时间: 04-03-27 17:50

回复: 286 [unique]   版主   登录
聪明

B17层 发表时间: 04-03-29 09:30

回复: jbcsk [jbcsk]   论坛用户   登录
哈哈,无心快语,典型的猪头三

B18层 发表时间: 04-04-02 19:13

回复: ypyy521 [ypyy521]   论坛用户   登录
9494

B19层 发表时间: 04-04-05 06:01

回复: andyhuahui [andyhuahui]   论坛用户   登录
那可能是注册表被改了!还原注册表就行了。

B20层 发表时间: 04-04-09 08:49

论坛: 编程破解

20CN网络安全小组版权所有
Copyright © 2000-2010 20CN Security Group. All Rights Reserved.
论坛程序编写:NetDemon

粤ICP备05087286号