md "1.1"
md "1.2"
……
md "2.5"
以清除系统垃圾为例方法如下:
1、新建一个文本文档,在空白处鼠标右键单击,点击新建,点击文本文档。
2、将新建的文本文档命名为清除系统垃圾,打开新建的文本文档。
3、输入相关代码,复制粘贴到文本文档中,关闭并保存文本文档。
譬如:清除系统垃圾代码
@echo off
echo 正在清理系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp &md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清理系统垃圾完成!
echo. &pause
4、将清除系统.TXT文本文档的后辍.TXT更改为.BAT,点击是确定修改。
批量创建,自然需要用 批处理 了。将下面的内容复制到记事本中,然后另存为.bat类型的文件,双击即可创建5个不能 *** 作的空文件夹。@echo off
for /l %%i in (1,1,5) do (
md dir%%i
echo y|cacls "dir%%i" /d everyone>nul
)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)