Search found 3 matches
- 16 Dec 2011 04:27
- Forum: DOS Batch Forum
- Topic: if there is more then 1 file then delete old files
- Replies: 2
- Views: 2624
Re: if there is more then 1 file then delete old files
thanks for the response but it still deletes all older files when there is only one file in there now i have this dunno if i do this correct dir /a-d /b /s "d:\bacup\*" >nul 2>&1 ||goto :eof @ECHO OFF IF "%DAY%" == "Monday" GOTO FIRST :SECOND forfiles /p d:\bacup /s...
- 15 Dec 2011 02:08
- Forum: DOS Batch Forum
- Topic: Cannot xcopy outlook.pst ?
- Replies: 2
- Views: 2951
Re: Cannot xcopy outlook.pst ?
outlook still running?
- 15 Dec 2011 01:55
- Forum: DOS Batch Forum
- Topic: if there is more then 1 file then delete old files
- Replies: 2
- Views: 2624
if there is more then 1 file then delete old files
i run a backup to a share and i need to delete old backup's otherwise my share will run out of disk space now i run this in file in Scheduled Tasks @ECHO OFF IF "%DAY%" == "Monday" GOTO FIRST :SECOND forfiles /p d:\bacup /s /m *.* /d -2 /c "cmd /c del @file : date >= 1 day >...