Results 1 to 4 of 4

Thread: How to empty Recycle Bin using command line

  1. #1
    Join Date
    Feb 2009
    Posts
    69

    How to empty Recycle Bin using command line

    hello friends,

    I want to know, is there a way to empty recycle bin from a command line. I am using Windows XP operating system. Can anybody suggest me ideas to empty recycle bin using command line ?

    thanks

  2. #2
    Join Date
    Nov 2005
    Posts
    3,026

    Re: How to empty Recycle Bin using command line

    The command line to empty Recycle Bin looks something like this :

    ATTRIB %systemdrive%\RECYCLER\* -R -S -H /S /D
    RD %systemdrive%\RECYCLER /S /Q

    Put the above in a batch file, and that's it..

    Sometimes RD won't do it's job, so to be safer side follow these :

    ATTRIB %systemdrive%\RECYCLER\* -R -S -H /S /D
    DEL %systemdrive%\RECYCLER\* /F /S /Q
    RD %systemdrive%\RECYCLER /S /Q

  3. #3
    Join Date
    May 2008
    Posts
    2,680

    Re: How to empty Recycle Bin using command line

    Empty Recycle Bin 1.00 - Empty Recycle Bin is a simple command line tool that will allow you to empty the Windows Recycle Bin.
    To view the syntax : use 'EmptyRecycleBin.exe /?'

    Download

  4. #4
    Join Date
    Apr 2008
    Posts
    3,267

    Re: How to empty Recycle Bin using command line

    del C:\RECYCLED\?*.*

    DEL is an internal command of CMD.exe to delete an object, so that it might be neccessary to load it first [(i.e. the command line might appear something like this: CMD.exe /C del C:\RECYCLED\?*.*)]

Similar Threads

  1. Can't empty recycle bin
    By Beckinsale in forum Windows XP Support
    Replies: 11
    Last Post: 19-12-2011, 01:40 AM
  2. i cant empty my recycle bin
    By japos in forum Windows XP Support
    Replies: 6
    Last Post: 28-02-2011, 05:42 AM
  3. Recycle Bin Always Empty
    By Potawatomi in forum Operating Systems
    Replies: 5
    Last Post: 19-10-2010, 04:03 AM
  4. Urgent ! Can't empty recycle bin
    By kwanami in forum Windows XP Support
    Replies: 6
    Last Post: 03-01-2010, 06:38 PM
  5. Unable to empty recycle bin
    By InNeedOfHelp in forum Windows XP Support
    Replies: 7
    Last Post: 18-04-2009, 08:58 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,049,068.18977 seconds with 17 queries