in windows command line i can use the following to change the timestamp of a file to the current datetime:
copy /b filename.ext +,,
what i need is a way to set the timestamp to a previous datetime (-1 day, -1 week etc)
is this possible?
What i typically do in linux is this:
touch -d "$(date -R -r filename) - 2 hours" filename
But i need this for windows command line, not powershell or any other alternative.