And a small next question, What shoul you adjust in the script if you like to move file between a particular date: let say files in a particular week or day, @echo off set "dir=V:\Administratie\CS\Pakbon_Summaries" set age=299 pushd "%dir%" set movedFiles=0 for /f "tokens=*&...
Hello i have a move script but i like to add a date function so i can, lets see move all files older then >..... this is what i have allready. who can help me. kind regards, echo off SETLOCAL EnableDelayedExpansion set movedFiles=0 for /R V:\Administratie\CS\Pakbon_Summaries\ %%G in (*) do ( echo mo...