- 作者:zhiwei
- 时间:2017-08-17 20:17:10
在平时的生活工作中,我们偶尔会无聊,因此就想搞点事情出来,于是有人就想制作vbs病毒,可是很多人不知道Windows7怎么制作vbs病毒?为此小编赶紧整理了Windows7制作vbs病毒教程,感兴趣的朋友可以来看看。
方法/步骤:
1、首先,打开记事本。
2、输入代码(整人级):
- 01dim WSHshellA
- 02set WSHshellA = wscript.createobject("wscript.shell")
- 03WSHshellA.run "cmd.exe /c shutdown -r -t 180 -c ""你就是笨蛋?"" ",0 ,true
- 04dim a
- 05do while(a <> "是")
- 06a = inputbox ("说是,不说我就关你的机。不信?来试试。 ","说不说","不是",8000,7000)
- 07msgbox chr(13) + chr(13) + chr(13) + a,0,"MsgBox"
- 08loop
- 09msgbox chr(13) + chr(13) + chr(13) + "哈哈"
- 10dim WSHshell
- 11set WSHshell = wscript.createobject("wscript.shell")
- 12WSHshell.run "cmd.exe /c shutdown -a",0 ,true
- 13msgbox chr(13) + chr(13) + chr(13) + "你被我耍了"
dim WSHshellA set WSHshellA = wscript.createobject("wscript.shell") WSHshellA.run "cmd.exe /c shutdown -r -t 180 -c ""你就是笨蛋?"" ",0 ,true dim a do while(a <> "是") a = inputbox ("说是,不说我就关你的机。不信?来试试。 ","说不说","不是",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) + "你被我耍了"