Random Project

Fix for Too much XML files

Nice script, it does the job.

The cause for the error mention by seanmylne is that there are too many xml files in
c:program filesveritasbackup execntdata
or
c:Program FilesSymantecBackup ExecData
depends on your version.

I’ve made a bat script to fix the error with “Too much XML files” and set it to run daily.


@echo off
set bakpath=^0x22C:Program^ FilesVERITASBackup^ ExecNTDataBackupbackupxml^0x22
forfiles -p “C:Program FilesVERITASBackup ExecNTData” -s -m BE*.xml /D -20 /C “cmd /c mv @path %bakpath%”

Note:
DataBackupbackupxml – the folders need to be created or changed.
/D -20 = 20 is the number of days to keep the files.

You could also just delete the files, etc.
Hope it helps.