Windows shell脚本,用于删除早于24小时/ 1天的Windows 2003服务器中的临时文件和文件夹

时间:2012-12-24 09:28:05

标签: windows shell scripting windows-server-2003 windows-shell

提出确切的脚本会产生很多困惑,这些脚本可以在我的Windows 2003服务器上运行。

我尝试过的脚本如下:

forfiles.exe /p C:\Windows\Temp /s /m *.* /d - /c "cmd /c del @file

forfiles -p "C:\Windows\Temp" -s -m *.* -d -1 -c "cmd /c del /Q @path

删除所有内容,而不是删除超过24小时或1天的文件

@echo off
cd /d "C:\Windows\Temp"
rd /s /q "C:\Windows\Temp"

任务计划程序中没有选项可以删除超过X小时的文件和文件夹

注意:我不是在寻找Powershell,VB或Python

请帮忙。

0 个答案:

没有答案