-
Step 1
Click the Windows "Start" button and select "Run." Enter "cmd" in the textbox and press the "Enter" key.
-
Step 2
Type "cd recycled" in the command prompt. This navigates to the recycle bin directory.
-
Step 3
Change the file attributes in the directory. Files in the recycle bin directory are hidden, so the attributes on the files need to be changed to view them. The following command removes the hidden attributes, so you can view them:
attrib -R -S -H *.* -
Step 4
Copy the files to a directory. To copy the files from the recycle bin directory to another directory, use the following syntax:
xcopy <source> <destination>
Replace "<source>" with the file in the recycle bin. Replace "<destination>" with the location of where you want to copy the file.













