Frequently Asked Question

Auto Delete files using powershell
Last Updated 3 years ago

How to use PowerShell to delete files older than X days on Windows 10

If you have different folders with a lot of files and you would like to cleanup by deleting those older than certain days, you can use these steps:

  1. Open Start.
  2. Search for Windows PowerShell, right-click the result and select the Run as administrator option.
  3. Type the following command to delete files that haven’t been modified in the last 30 days and press Enter:
    Get-ChildItem –Path "C:\path\to\folder" -Recurse | Where-Object {($_.LastWriteTime -lt (Get-Date).AddDays(-30))} | Remove-Item

    In the above command remember to change "C:\path\to\folder" specifying the path to the folder that you want to delete files, and change -30 to select files with a last modified date.

    PowerShell LastWriteTime command
    PowerShell LastWriteTime command

How to use Task Scheduler to delete files older than X days automatically on Windows 10

The command in the previous instructions allows you to delete files in a folder that are older than 30 days, but you need to open PowerShell and execute the command manually every time you want to free up space.

Creating a PowerShell script using Notepad

To run a task using the Task Scheduler, you’ll need to create a PowerShell script with the steps:

  1. Open Start.
  2. Search for Notepad and click the top result to open the experience.
  3. Copy and paste the following command into a Notepad text file:
    Get-ChildItem –Path "C:\path\to\folder" -Recurse | Where-Object {($_.LastWriteTime -lt (Get-Date).AddDays(-30))} | Remove-Item

    In the above command remember to change "C:\path\to\folder" specifying the path to the folder that you want to delete files, and change -30 to select files with a last modified date.

  4. Click the File menu.
  5. Select the Save as option.
  6. Save the file using the cleanup.ps1 name and extension.

Creating a task using Task Scheduler

If you want to automate the process

ADVERTISEMENT, you need to use the Task Scheduler to create a task that executes the command at specified intervals.

  1. Open Start.
  2. Search for Task Scheduler and click the result.
  3. Right-click the Task Scheduler Library folder.
  4. Click the New Folder option.
  5. Type any name for the folder and click OK. (We’re creating a new folder to keep tasks organized and separated from the system tasks.)
  6. Right-click the recently created folder, and select the Create Task option.
  7. In the “Name” box, enter a name for the task.
  8. In the “General” tab, under the “Security options” section, select the Run whether user is logged on or not option. (This is the option that will make the command window not to appear when the task runs automatically.) Task Scheduler General tab
    Task Scheduler General tab
  9. Clear the Do not store password option.
  10. Click the “Triggers” tab.
  11. Click the New button.
  12. Using the “Begin the task” drop-down menu, select On a schedule.
  13. Under “Settings,” specify when you want the task to run (for example, On time, Daily, Weekly, Monthly). Whatever option you select, make sure to specify the Start settings on the right side.
  14. Click the OK button. Task Scheduler Trigger settings
    Task Scheduler Trigger settings
  15. Click the Actions tab.
  16. Click the New Button.
  17. Using the “Actions” drop-down menu, select the Start a program option.
  18. In the “Program/script” field, type the following command:
    powershell.exe
  19. In the “Add arguments” field type the following command and click the OK button.
    -ExecutionPolicy Bypass C:\path\to\cleanup.ps1

    In the above command remember to change "C:\path\to\cleanup.ps1" specifying the path to the PowerShell script you have previouly created to delete files.

    Task Scheduler Action settings
    Task Scheduler Action settings
  20. Click the Settings tab.
  21. Check the following options:
    • Allow task to be run on demand.
    • Run task as soon as possible after a scheduled start missed.
    • If the task fails, restart everything.
  22. Click the OK button.
  23. Type your administrative username and password (if applicable).
  24. Click the OK button.

Please Wait!

Please wait... it will take a second!