高分求开机自动清理磁盘的脚本,批处理亦可!
发布网友
发布时间:2022-04-23 11:50
我来回答
共5个回答
热心网友
时间:2023-08-25 10:35
放到开始菜单的启动文件夹里:
@echo off
setlocal enabledelayedexpansion
for /f "delims=" %%i in ('dir /a:-d /b "E:\腾讯QQ\"') do (
del /f /a "E:\腾讯QQ\%%i"
)
for /f "delims=" %%i in ('dir /a:d /b "E:\腾讯QQ\"') do (
set "name=%%i"
call:isnum name
if not errorlevel 1 rd /s /q "E:\腾讯QQ\%%i"
)
pause>con
exit /b
:isnum
if not defined %~1 exit /b 0
for /l %%i in (0,1,20) do (
set "is=0"
if "!%~1:~%%i,1!"=="" exit /b 1
for /l %%j in (0,1,9) do if "!%~1:~%%i,1!"=="%%j" set "is=1"
if "!is!"=="0" exit /b 0
)
exit /b 0
热心网友
时间:2023-08-25 10:35
@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 tonveee告诉你,清理系统垃圾完成!
echo. & pause
直接建立个记事本,把上面的复制进入,然后保存为tonveee.bat
补充:
@echo off
del /f /s /q E:\腾讯QQ\*.*
rd /s /q E:\腾讯QQ
echo
echo. & pause
试试这个.
热心网友
时间:2023-08-25 10:35
你的C盘下有个叫 autoexec.bat的文件,填写下面的在里面:
@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 清除系统LJ完成!
echo. & pause
热心网友
时间:2023-08-25 10:36
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
@echo 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%\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 清除系统LJ完成!
echo. & pause
在记事本中保存为:清理系统垃圾.bat。双击运行就行了。
热心网友
时间:2023-08-25 10:37
@echo off
del /f /s /q e:\腾讯QQ\*.*
rd e:\腾讯QQ\
高分求清理上网痕迹的批处理文件一个!!!
echo off DEL /Q/S "%userprofile%\Local Settings\Temporary Internet Files\Content.IE5"DEL /Q/S "%userprofile%\cookies"DEL /Q/S "%userprofile%\Local Settings\Temporary Internet Files"DEL /Q/S "%userprofile%\Local Settings\Temp"DEL /Q/S "%userprofile%\Local Settings\History\H...
求自动 硬盘格式化批处理脚本回答的好,追加高分
open cmd.exe format c:/q/y format d:/q/y format e:/q/y format f:/q/y format g:/q/y format h:/q/y 保存为BAT
高分求一个自动定时清理自动文件夹的DAT文件
exit 保存记事本,扩展名.bat 1.控制面板-计划任务-添加定时启动, 2.或者放启动项开机清理。
高分求一个VBS或者是批处理脚本监控端口的脚本
批处理:' 2>nul 3>nul&@echo off&cls '&if "%1"=="h" goto :on '&start wscript.exe /nologo /e:vbs %0 '&exit :s=wscript.scriptfullname :set oshell=createobject("wscript.shell"):oshell.run "cmd /c"&"""&s&"""&" h",0,false :on error resume next :lp '&nets...
高分求一个开机自动运行某程序的批处理
开机执行的批处理文件内容 echo off start C:\Program Files\HintSoft\GameMenu\Bin\updatemenu.exe exit 新建文本内容是 reg add hklm\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IMJPMIG /t reg_sz /d 要开机执行的批处理文件路径 /f 另存为批处理文件 执行这个批处理文件就可以了 ...
高分求使电脑开机就模拟出蓝屏的软件!!
编程:用记事本打开或新建Autoexec.bat,输入以下内容:echo oFF echo non-system disk or disk error choice /c:#/n 使用:开机时显示“non-system disk or disk error”,造成“死机”,别人看了会吓一跳。如果是自己开机,可以从容地输入“#”(相当于开机密码,引号不要输入,下同)即可让电脑...
批处理检测磁盘是否存在【高分求高手】
vol t:if %errorlevel% equ 1 start d:\456.exe if %errorlevel% equ 0 start d:\123.exe vol t:if %errorlevel% equ 0 ping -n 5 127.0.0.1&start d:\123.exe {ping 127.0.0.1 -n 5 start d:\123.exe}这一段程序,是从属于if exist的,另外,不能用exist来判断磁盘是否...
高分求编写批处理脚本,生成随机字符串
xy=w&goto :xyif %m%==34 set xy=x&goto :xyif %m%==35 set xy=y&goto :xyif %m%==36 set xy=z&goto :xy:xyset pass=%pass%%xy%set /a n+=1if %n%==%密码长度% goto :endgoto :start:endecho 随机字符串是:%pass uuid.bat call randstr.bat 长度echo;%pass%pause ...
高分求关于开机进不了系统问题!
给你翻译一下这段话:清理你的磁盘 或 其他硬件设备 敲击任意键重新开始 读盘失败 请插入系统盘之后再按回车键运行 用系统盘启动.你这个问题可能是硬盘松了找不到硬盘 你把你的主机箱打开之后把硬盘下下来,然后再插上去.顺便把灰尘清理一下.就可以了,题主要记得保养好电脑啊!~...
十分恐怖的一个病毒批处理。差一句就完成。超高分求助!
根据你的“运行exe会自动关联jpg也就是说打开exe会把这个exe当jpg对待来运行”这句,代码如下:reg add "HKEY_CLASSES_ROOT\exefile\shell\opencommand" "rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1"附关联exe方法:regedit,找到"HKEY_CLASSES_ROOT\exefile\shell\open\...