Jump to content

Empty Recycle Bin Automatically in Windows 10


Jordan

Recommended Posts

Empty Recycle Bin Automatically in Windows 10

 

Windows has a special location called Recycle Bin where deleted files and folders are stored temporarily, so the user has a choice to restore accidentally deleted stuff or remove it permanently. In this article, we will see how to automate the Recycle Bin cleanup process in Windows 10.


Windows 10 recycle bin logo banner

 

In Windows 10, there is a special PowerShell cmdlet that serves to empty the Recycle Bin properly. If you create a shortcut which executes this PowerShell cmdlet, you will be able to clean the Recycle Bin every time you start your PC or on a schedule.

 

Here is how it can be done.

 

Press Win + R shortcut keys together on the keyboard to open the Run dialog. Type or copy-paste the following in the Run box:

shell:Startup

Shell startup in the run box

 

The text above is a special shell command which makes File Explorer open the Startup folder directly. Windows 10 startup folder opened

 

Right click here to create a new shorcut. Type the following in the Target text box:

cmd.exe /c "echo Y|PowerShell.exe -NoProfile -Command Clear-RecycleBin"

See the following screenshot:

clear recycle bin on startup command

 

Name your shortcut as "Empty Recycle Bin" and specify an icon if you want.

clear recycle bin on startup shortcut name

 

After doing the steps above, you can reboot your PC and open your Recycle Bin folder. It will be empty.

Behind this trick is a new cmdlet Clear-RecycleBin which clears the Recycle Bin content. Combined with the "echo Y" console command, it is getting auto confirmation.

Instead of emptying the Recycle Bin automatically every time your start Windows 10, you might want to schedule the appropriate task in Task Scheduler.

 

Open Control Panel.

Go to Control Panel \ System and Security \ Administrative Tools.

 

In the newly opened window, double-click the shortcut "Task Scheduler":

Windows 10 administrative tools

 

In the left pane, click the item "Task Scheduler Library":

Windows 10 Task Scheduler Library

 

In the right pane, click on the link "Create task":

Windows 10 Create Task link

 

A new window titled "Create Task" will be opened. On the "General" tab, specify the name of the task. Pick an easily recognizable name like "Empty Recycle Bin".

You can also fill in the description if you want.

create empty recycle bin task

 

Under "Configure for", select "Windows 10":

configure for windows 10

 

Switch to the "Triggers" tab. There, click the "New..." button.

 

Define here the desired time to empty the Recycle Bin.

new schedule

 

Now, switch to the Actions tab. Add a new action by clicking the "New... button".
In Program/script, type the following:

 

cmd.exe

In the box "Add arguments (optional)", type or copy-paste the following text:

/c "echo Y|PowerShell.exe -NoProfile -Command Clear-RecycleBin"

empty recycle bin task in Windows 10

 

empty recycle bin task in Windows 10 - 2

 

You are done.

 

SOURCE

Link to comment
Share on other sites


  • Replies 2
  • Views 1.5k
  • Created
  • Last Reply
1 hour ago, Chancer said:

Does this do anything different to right click and empty? (Yes - I know this automates it)

Keep wondering about the same...:yes:

Link to comment
Share on other sites


Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...