by:zuifeng258
Windows在默认情况下几个盘多是共享的,它们是隐藏的危险。
在dos下用命令“net share”可以查看。。。
不能截图,就只能打打字了
复制代码 代码如下:
@echo off
echo 正在自动删除admin$管理共享和ipc$管道共享,
net share admin$ /del
net share IPC$ /del
net share C$ /del
net share D$ /del
net share E$ /del
net share F$ /del
@echo off并不是DOS程序中的,
而是DOS批处理中的。
当年的DOS,所有操作都用键盘命令来完成,
当你每次都要输入相同的命令时,
可以把这么多命令存为一个批处理。
上面那段是默认admin$管理共享和ipc$管道共享的命令
如果那没有这么多盘符,可以照上面的“net shere *$” /del ' *是你的盘符号。进行增减
复制代码 代码如下:
@echo off
echo 这是正在检查cookies、历史纪录等目录位置(当前用户)……
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cache>%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cookies%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v History%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v NetHood%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Recent%temp%\cleantmp.txt
echo 这里是 清理当前用户的Cookies,IE缓存,历史纪录等……
for /f "tokens=3*" %%i in (%temp%\cleantmp.txt) do (
for /d %%i in ("%%i %%b\*.*") do rd /q /s "%%i">Nul 2>Nul
del /a /f /s /q "%%i %%b\*.*">Nul 2>Nul
)
echo 这里清理系统临时垃圾文件……
del /a /f /s /q "%userprofile%\Locals~1\Tempor~1\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\Locals~1\Temp\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\cookies\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\recent\*.*" >Nul 2>Nul
del /a /f /s /q "%Temp%\*.*" >Nul 2>Nul
del /a /f /s /q "%Tmp%\*.*" >Nul 2>Nul
del /a /f /s /q "%HomePath%\..\IconCache.db" >Nul 2>Nul
del /a /f /s /q "%SystemDrive%\driver?\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemDrive%\driver?\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*._mp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.bak" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\kb*.log" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.dmp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.gid" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.old" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.query" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.tmp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\inf\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\driver?\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\driver?\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\inf\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\minidump\*.*" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\Prefetch\*.*" >Nul 2>Nul
for %%i in (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 del /a /f /q %%i:\autorun.inf %%i:\*.exe & rd /q /s %%i:\recycler %%i:\recycled
rd /q /s "%ProgramFiles%\InstallShield Installation Information" >Nul 2>Nul
rd /q /s "%systemdrive%\Documents and Settings\All Users\Documents\My BoBoTurbo" >Nul 2>Nul
rd /q /s "%systemroot%\Connection Wizard" >Nul 2>Nul
rd /q /s "%systemroot%\Downloaded Installations" >Nul 2>Nul
rd /q /s "%SystemRoot%\Help" >Nul 2>Nul
rd /q /s "%systemroot%\ie7updates" & md "%systemroot%\ie7updates" >Nul 2>Nul
rd /q /s "%SystemRoot%\Offline Web Pages" >Nul 2>Nul
rd /q /s %SystemRoot%\system32\oobe
rd /q /s "%SystemRoot%\system32\ReinstallBackups" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\Download" & md "%SystemRoot%\SoftwareDistribution\Download" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\datastore" & md "%SystemRoot%\SoftwareDistribution\datastore" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\EventCache" & md "%SystemRoot%\SoftwareDistribution\EventCache" >Nul 2>Nul
rd /q /s "%SystemRoot%\temp" & md "%SystemRoot%\temp" >Nul 2>Nul
echo 这里是清理无用的磁盘检错文件……
del /a /f /q "%SystemDrive%\*.chk" >Nul 2>Nul
dir %SystemDrive%\found.??? /ad/b >c:\临时垃圾.txt
for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemDrive%\%%i" >Nul 2>Nul
echo 这里清理系统升级补丁留下来的反安装目录……
dir %SystemRoot%\$*$ /ad /b >c:\临时垃圾.txt
for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemRoot%\%%i" >Nul 2>Nul
echo 这里是清除常见的软件垃圾项目……
Ren "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe" realsched.ex_ >Nul 2>Nul
Del "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe" >Nul 2>Nul
rd /q /s "%ProgramFiles%\Tencent\QQGame\Download" >Nul 2>Nul
taskkill /f /im "TIMPlatform.exe" /t >Nul 2>Nul
del /a /f /s /q "%ProgramFiles%\Tencent\QQ\TIMPlatform.exe" >Nul 2>Nul
del /a /f /s /q c:\临时垃圾.txt
regsvr32 /u /s zipfldr.dll & del /f /s /q %systemroot%\ststem32\zipfldr.dll
copy /y %systemroot%\system32\dllcache\ctfmon.exe d:\
copy /y %systemroot%\system32\dllcache\explorer.exe d:\
copy /y %systemroot%\system32\dllcache\userinit.exe d:\
sfc /purgecache
copy /y d:\ctfmon.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\ctfmon.exe
copy /y d:\explorer.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\explorer.exe
copy /y d:\userinit.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\userinit.exe
echo 已完成一键系统垃圾自动清理及系统自动减肥
exit
也不知道这代码怎么讲,呵呵,,
我就不讲解代码了。。
讲讲这么操作吧,建一个TxT的文本文件,把代码输入进去,在把它的后缀名改成 .bat
的批处理文件,然后再它基础上创建一个快捷方式,把这个快捷方式放到菜单栏那“开始”中启动项里面。
就OK 了。此后只要你开机,它就自己运行,运行完后就自动退出
如果你想手动,照上做,
想要处理的时候就直接双击你的批处理文件就行。
最后说一下,批处理的功能很强,批处理的命令不熟不要乱用,很危险,,,,,
Windows在默认情况下几个盘多是共享的,它们是隐藏的危险。
在dos下用命令“net share”可以查看。。。
不能截图,就只能打打字了
复制代码 代码如下:
@echo off
echo 正在自动删除admin$管理共享和ipc$管道共享,
net share admin$ /del
net share IPC$ /del
net share C$ /del
net share D$ /del
net share E$ /del
net share F$ /del
@echo off并不是DOS程序中的,
而是DOS批处理中的。
当年的DOS,所有操作都用键盘命令来完成,
当你每次都要输入相同的命令时,
可以把这么多命令存为一个批处理。
上面那段是默认admin$管理共享和ipc$管道共享的命令
如果那没有这么多盘符,可以照上面的“net shere *$” /del ' *是你的盘符号。进行增减
复制代码 代码如下:
@echo off
echo 这是正在检查cookies、历史纪录等目录位置(当前用户)……
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cache>%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cookies%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v History%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v NetHood%temp%\cleantmp.txt
reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Recent%temp%\cleantmp.txt
echo 这里是 清理当前用户的Cookies,IE缓存,历史纪录等……
for /f "tokens=3*" %%i in (%temp%\cleantmp.txt) do (
for /d %%i in ("%%i %%b\*.*") do rd /q /s "%%i">Nul 2>Nul
del /a /f /s /q "%%i %%b\*.*">Nul 2>Nul
)
echo 这里清理系统临时垃圾文件……
del /a /f /s /q "%userprofile%\Locals~1\Tempor~1\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\Locals~1\Temp\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\cookies\*.*" >Nul 2>Nul
del /a /f /s /q "%userprofile%\recent\*.*" >Nul 2>Nul
del /a /f /s /q "%Temp%\*.*" >Nul 2>Nul
del /a /f /s /q "%Tmp%\*.*" >Nul 2>Nul
del /a /f /s /q "%HomePath%\..\IconCache.db" >Nul 2>Nul
del /a /f /s /q "%SystemDrive%\driver?\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemDrive%\driver?\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*._mp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.bak" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\kb*.log" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.dmp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.gid" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.old" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.query" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\*.tmp" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\inf\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\driver?\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\driver?\InfCache.1" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\inf\*.pnf" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\minidump\*.*" >Nul 2>Nul
del /a /f /s /q "%SystemRoot%\Prefetch\*.*" >Nul 2>Nul
for %%i in (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 del /a /f /q %%i:\autorun.inf %%i:\*.exe & rd /q /s %%i:\recycler %%i:\recycled
rd /q /s "%ProgramFiles%\InstallShield Installation Information" >Nul 2>Nul
rd /q /s "%systemdrive%\Documents and Settings\All Users\Documents\My BoBoTurbo" >Nul 2>Nul
rd /q /s "%systemroot%\Connection Wizard" >Nul 2>Nul
rd /q /s "%systemroot%\Downloaded Installations" >Nul 2>Nul
rd /q /s "%SystemRoot%\Help" >Nul 2>Nul
rd /q /s "%systemroot%\ie7updates" & md "%systemroot%\ie7updates" >Nul 2>Nul
rd /q /s "%SystemRoot%\Offline Web Pages" >Nul 2>Nul
rd /q /s %SystemRoot%\system32\oobe
rd /q /s "%SystemRoot%\system32\ReinstallBackups" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\Download" & md "%SystemRoot%\SoftwareDistribution\Download" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\datastore" & md "%SystemRoot%\SoftwareDistribution\datastore" >Nul 2>Nul
rd /q /s "%SystemRoot%\SoftwareDistribution\EventCache" & md "%SystemRoot%\SoftwareDistribution\EventCache" >Nul 2>Nul
rd /q /s "%SystemRoot%\temp" & md "%SystemRoot%\temp" >Nul 2>Nul
echo 这里是清理无用的磁盘检错文件……
del /a /f /q "%SystemDrive%\*.chk" >Nul 2>Nul
dir %SystemDrive%\found.??? /ad/b >c:\临时垃圾.txt
for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemDrive%\%%i" >Nul 2>Nul
echo 这里清理系统升级补丁留下来的反安装目录……
dir %SystemRoot%\$*$ /ad /b >c:\临时垃圾.txt
for /f %%i in (c:\临时垃圾.txt) do rd /q /s "%SystemRoot%\%%i" >Nul 2>Nul
echo 这里是清除常见的软件垃圾项目……
Ren "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe" realsched.ex_ >Nul 2>Nul
Del "%ProgramFiles%\Common~1\Real\Update_OB\realsched.exe" >Nul 2>Nul
rd /q /s "%ProgramFiles%\Tencent\QQGame\Download" >Nul 2>Nul
taskkill /f /im "TIMPlatform.exe" /t >Nul 2>Nul
del /a /f /s /q "%ProgramFiles%\Tencent\QQ\TIMPlatform.exe" >Nul 2>Nul
del /a /f /s /q c:\临时垃圾.txt
regsvr32 /u /s zipfldr.dll & del /f /s /q %systemroot%\ststem32\zipfldr.dll
copy /y %systemroot%\system32\dllcache\ctfmon.exe d:\
copy /y %systemroot%\system32\dllcache\explorer.exe d:\
copy /y %systemroot%\system32\dllcache\userinit.exe d:\
sfc /purgecache
copy /y d:\ctfmon.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\ctfmon.exe
copy /y d:\explorer.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\explorer.exe
copy /y d:\userinit.exe %systemroot%\system32\dllcache\ & del /f /q /s d:\userinit.exe
echo 已完成一键系统垃圾自动清理及系统自动减肥
exit
也不知道这代码怎么讲,呵呵,,
我就不讲解代码了。。
讲讲这么操作吧,建一个TxT的文本文件,把代码输入进去,在把它的后缀名改成 .bat
的批处理文件,然后再它基础上创建一个快捷方式,把这个快捷方式放到菜单栏那“开始”中启动项里面。
就OK 了。此后只要你开机,它就自己运行,运行完后就自动退出
如果你想手动,照上做,
想要处理的时候就直接双击你的批处理文件就行。
最后说一下,批处理的功能很强,批处理的命令不熟不要乱用,很危险,,,,,
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]