如果你使用Windows 9x/Me,那可以把C:\Windows\Command\Deltree.exe文件拷貝到C:\目錄下。再編輯C:\Autoexec.bat文件,在其中加入以下語句即可:
deltree /y c:\windows\temp >nul
md c:\windows\temp
如果你使用Windows 2000/XP,在C:\winnt中建立一個cleantmp.bat的文件,在其中輸入以下內容:
@echo off
c:\
cd %temp%
del /f /q /s *.*
rd . /s /q
接著,在“開始→程序→啟動”組中建立一個指向cleantmp.bat的快捷方式,Windows一啟動,將會自動刪除掉臨時文件。
From:http://tw.wingwit.com/Article/Network/201309/526.html