Skip to content

Instantly share code, notes, and snippets.

@abdmun8
Last active May 26, 2022 16:56
Show Gist options
  • Select an option

  • Save abdmun8/a3a0e26ed0fc988efd3c7b8d04dc2876 to your computer and use it in GitHub Desktop.

Select an option

Save abdmun8/a3a0e26ed0fc988efd3c7b8d04dc2876 to your computer and use it in GitHub Desktop.
Delete Files older than 7 days windows

Delete Files older than 7 days on windows

ForFiles /p "C:\path\to\folder" /s /d -7 /c "cmd /c del /q @file"

or

ForFiles -p "C:\path\to\folder" -s -m *.bak -d -7 -c "Cmd /C del @FILE"

Add do task scheduler

  • Go to action tab
  • On program/script input insert ForFiles
  • On argument input paste the rest of the command
  • Save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment