Empty XP recycle bin - use DOS?

P

Peter Rossiter

I run XP Pro. I have about 12 partitions. Some are over 50 GB.

Sometimes I want to empty the RECYCLED folder but if I open the
RECYCLE BIN then it goes and gets info from all the partitions.

Is there a way I can go straight to one partitions RECYCLED folder
and empty only that one?

If I try to go there in XP's DOS then it can't see the RECYCLED
folder. How can I make it visible and will I be able to empty it?

I have tried Total Commander (formerly Windows Commander).
Although it can list the files in one partitions RECYCLED folder,
it cannot delete them.
 
M

Michael Bednarek

I run XP Pro. I have about 12 partitions. Some are over 50 GB.

Sometimes I want to empty the RECYCLED folder but if I open the
RECYCLE BIN then it goes and gets info from all the partitions.

Is there a way I can go straight to one partitions RECYCLED folder
and empty only that one?

If I try to go there in XP's DOS then it can't see the RECYCLED
folder. How can I make it visible and will I be able to empty it?

I have tried Total Commander (formerly Windows Commander).
Although it can list the files in one partitions RECYCLED folder,
it cannot delete them.

This should show all files and directories in RECYCLER:
DIR /A /S \RECYCLER\*.*
This will remove any System and Hidden attributes:
ATTRIB -S -H /S /D \RECYCLER\*.*
And this should delete, after a confirmation prompt, all content:
FOR /D %d IN (\RECYCLER\*.*) DO RD /S %d

I didn't test the last command :)

You should familiarise yourself with:
HH ntcmds.chm
 
M

Marco Maier Said

Peter Rossiter wrote in message said:
I run XP Pro. I have about 12 partitions. Some are over 50 GB.

Sometimes I want to empty the RECYCLED folder but if I open the
RECYCLE BIN then it goes and gets info from all the partitions.

Is there a way I can go straight to one partitions RECYCLED folder
and empty only that one?

If I try to go there in XP's DOS then it can't see the RECYCLED
folder. How can I make it visible and will I be able to empty it?

I have tried Total Commander (formerly Windows Commander).
Although it can list the files in one partitions RECYCLED folder,
it cannot delete them.

rd /s /q c:\recycler
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top