- 23 名前:デフォルトの名無しさん [2008/08/09(土) 15:48:42 ]
- @echo off
rem set temp=%userprofile%\Local Settings\Temp set tempusr=%temp% set tempwin=%systemroot%\Temp set temphome=%homedrive%\Temp echo ------------------------------------------------------------------------------- echo %tempusr%の全ファイル・フォルダ削除 erase /f/s/q %tempusr%\* rmdir /s/q %tempusr%\ echo ------------------------------------------------------------------------------- echo %tempwin%の全ファイル・フォルダ削除 erase /f/s/q %tempwin%\* rmdir /s/q %tempwin%\ echo ------------------------------------------------------------------------------- echo %temphome%の全ファイル・フォルダ削除 erase /f/s/q %temphome%\* rmdir /s/q %temphome%\ echo ------------------------------------------------------------------------------- echo ディレクトリ復元 md %tempusr% md %tempwin% md %temphome% echo 処理完了----------------------------------------------------------------------- rem pause
|

|