|
(已解决)请帮我写一个删掉C盘所有以“$”打头的文件夹的批处理?
就是写一个全部删除诸如$hf_mig$,$NtUninstallMSCompPackV1$,$NtUninstallwmp11$等目录的.bat文件。请高手帮忙!
经试验,将以下内容存为.bat文件,运行即可。
dir %windir%\$* /a:d /b >%windir%\temp.log
for /f %%i in (%windir%\temp.log) do rd %windir%\%%i /s /q
del %windir%\temp.log /f /q |
|