[3]让你的Ghost XP更加自动化---dllcache的重建
@echo off
dir %systemroot%\system32\dllcache /a /b >files.txt
sfc /purgecache
echo @echo on >fdir.cmd
for /f %%I in (files.txt) do echo dir c:\%%I /a /b /s ^>^>%systemroot%\fdir.txt >>fdir.cmd
call fdir.cmd
del fdir.cmd
del files.txt
pause
@echo off
set fdir=%systemroot%\fdir.txt
for /f "usebackq" %%J in (%fdir%) do copy %%J %systemroot%\system32\dllcache\ >nul
del %fdir%
pause
好深奥啊,讲解一下呀!!