另一个DLLCacheManage批处理源代码
另一个DLLCacheManage批处理源代码,我写的请求加精
DLLCacheManage备份批处理源代码
@echo off
dir /b /q "C:\WINDOWS\system32\dllcache" >>bak.txt
ping -n 2 localhost > nul
del /f /s /q /a C:\WINDOWS\system32\dllcache\*.*
cls
echo 正在备份Dllcache,请稍后。。。
for /f "tokens=*" %%i in (bak.txt) do ( dir /s /b "%%i" >>file.txt )
del /f /s /q bak.txt
DLLCacheManage恢复批处理源代码
@echo off
for /f "tokens=*" %%i in (file.txt) do (dir /s/b "%%i" && copy "%%i" C:\WINDOWS\system32\dllcache)
附件: 您所在的用户组无法下载或查看附件