How to restore deleted items to any location?
When we open the recycle bin, such as recycle bin in Windows 7, we can only restore it to the original folder of the deleted file. In fact, we can move or copy it directly by dragging and dropping the mouse without clicking the restore command. Revert to the specified folder, of course, the target location of the drag and drop must also be open. Similarly, if we want to quickly delete files, just drag them to the trash window or icon.

How can I quickly empty the Recycle Bin anywhere?
When our machine has to empty the recycle bin because the hard disk space is full, we can only display the desktop first, then double-click the "recycle bin", and then perform the clear operation. This method is obviously not very convenient. In fact, you can create a quick setup - just add a primary key to the registry file:
Run the Registry Editor, go to "HKEY_CLASSES_ROOTshellexContextMenuHandlers", right click on the ContextMenuHandlers folder icon in the left column, then select "New" "Primary Key", and change the name of the new folder from "New Primary Key #1". for:
"{645FF040-5081-101B-9F08-00AA002F954E}", then press Enter to confirm.
This way, when you right-click anywhere to select a file, the option to "Empty Recycle Bin" appears in the menu.

How can I make the recycle bin not empty (lock the recycle bin)?
Go to HKEY_CLASSES_ROOTCLSID{645FF040-5081-101B-9F08-00AA002F954E}InProcServer32 and change the default to "shell32.dll-".

How to hide the recycle bin?
Go to HKEY_LOCAL_MACHINESOFTWARE MicrosoftWindowsCurrentVersion ExplorerDesktopNameSpace, click each sub-item under the branch, the name of the sub-item is displayed in the default {450d8fba-ad25-11d0-98a8-0800361b1103}, if the recycle bin is hidden, the sub-item is backed up first. Then delete it. To resume displaying the recycle bin icon, simply restore the backup file.

How do I change the prompt when the recycle bin is full?
At HKEY_LOCAL_MACHINESoftwareCLASSESCLSID
{645FF040-5081-101B-9F08-00AA002F954E}, in the right window, modify the key value of the string "InfoTip" to the prompt information you want, such as: "too much garbage."

How do I change the prompt when the recycle bin is empty?
At HKEY_LOCAL_MACHINESoftwareCLASSESCLSID
{645FF040-5081-101B-9F08-00AA002F954E}, in the right window, modify the key value of the string "InfoTip" to the prompt information you want, such as: "no garbage."

How to create a recycle bin for a floppy disk?
Deleting a file on a floppy disk will not appear in the recycle bin, so you will not be able to recover it. Do you want to avoid this happening? You can create a folder on the D drive and name it "Deleted floppy disk file", then use the Explorer to open the c: Windows Send To folder and use the right mouse button to place the "Delete floppy file" folder on the D drive. Drag to the SendTo folder, and then select the "Create shortcuts at current location" command in the slide-out menu. When you want to delete the files on the floppy disk, first select the file you want to delete, then hold down the SHIFT key and click the right mouse button. , select "send to" → "deleted floppy disk file", so once you find that you have deleted the file on the floppy disk by mistake, you can also find it under the "removed floppy disk file" folder on the D disk to achieve recovery.

How to recover files in the recycle bin under DOS?
How do we recover files in the Recycle Bin when Windows fails to start? If I didn't know what files were deleted when I deleted it, can I restore the system? The answer is yes, it is implemented using classic DOS commands.
For example, in a dual-boot system, the NT system files are accidentally deleted in the Windows 98 environment, and neither NT nor Windows 98 can be started.
Here's a way to help you solve this problem. First, enter the DOS mode (if WINDOWS cannot start normally, start with a floppy disk with boot file), enter the C: RECYCLED directory, this is a hidden directory, if the file you want to restore is originally in the D drive, the corresponding directory is D: RECYCLED. Use the dir/a command to list a bunch of hidden files (DC1.txt, DC2.com...) at the beginning of the DC. These are the files that you have deleted.
However, since Windows changed the file name when moving the file to the recycle bin, it is necessary to retrieve the original file name. The original file name can be found in the INFO2 file under the RECYCLED directory (using EDIT INFO2). INFO2 is a binary file. Each deleted file has a record (800 bytes) in the INFO2 file. The file name can be found. The other information is not ASCII characters. Those garbled are not necessary. Copy the file name to the target location by using the COPY command, for example COPY DC2.EXE C:WINDOWSCOMMANDDELTREE.EXE.
The file names are arranged in order. The first file name is the original file name of the DC1.* file, and the suffix name remains unchanged. If the directory is deleted, there is a directory called DC???? under RECYCLED. In the same way, the original directory name can be retrieved.
To do this, you must ensure that you have a floppy disk that can be started. Except for io.sys,
msdos.sys, and command.com, it is best to have edit.com and attrib.exe files. Everyone knows what this is for. At the same time, users who are familiar with Windows 95/98/ME/2000/NT are also familiar with the commonly used DOS commands. Windows is really comfortable to use, but sometimes it has to be solved by DOS.

How to use the "Recycle Bin" to achieve batch renaming?
I wonder if you have encountered this situation? A lot of material found from the Internet, but the file name has no rules. Do you want to change their names to 1, 2, 3... so ruled names for management, one by one? too troublesome! We can do it with the recycling station easily.
The first thing to understand is the principle of the recycle bin. Everyone knows that the same folder does not allow two or more files to use the same file name, but we can see that the recycle bin allows. Entering DOS mode with "CDRecycled" we can see the real reason: WINDOWS cleverly changed the deleted file name to DC1.*, DC2.*... (if you enter the Recycled directory under the C drive, D Under the disc is DD1.*, DD2.*...... other similar, * indicates the original file extension), placed in the recycle bin specific directory Recycled.
Now you should understand what we should do! First empty the recycle bin, delete all the files you want to rename (must be done under WINDOWS, but also ensure that the recycle bin space is enough!). Then create a new folder under the D drive such as 123. (If your file is deleted in D drive) Type in DOS mode (can be in DOS mode of WINDOWS):
CDRecycled
COPY *.* D:S
All the files have been changed to DD1, DD2... Is it convenient to have a regular name? Also, add that you need to delete a useless file before deleting, and then empty the recycle bin, otherwise your file will likely start from a digital base of more than 100. Of course, you can use DIR 〉 HM.BAT to make a batch file, and then use “WordPad” to modify it to change DD to other names.
23, how to use the recycle bin to encrypt the folder?
There are many ways to encrypt a folder. There are software encryption and registry encryption. The "recycle bin" that comes with Windows itself can also encrypt folders, so those who like to peek files can't do anything.
To encrypt the "d: MyData" folder, the steps are as follows:
1. Edit the initialization file desktop.ini with Notepad;
[.ShellClassInfo]
CLSID={645FF040-5081-101B-9F08-00AA002F954E}
2. Copy the file desktop.ini into the "d: MyData" folder to be encrypted.
3. Modify the properties of the file desktop.ini and set it to "read only";
4. Then right-click on the "d: MyData" folder, select Properties, make sure the "Read Only" property is selected in the pop-up dialog box, then check the "Enable thumbnail view mode" checkbox, then confirm can.
  how about it? Your "MyData" folder has become the icon of "Recycle Bin", and when you open it, it is also the original "Recycle Bin" content, and you can't see the contents of "MyData" at all.
Encrypted, how do you use it? It is not difficult to enter DOS, cdMyData, enter the MyData directory of the D drive, modify the desktop.ini property with ATTRIB, delete the desktop.ini, and your "MyData" folder is the same as before.
Encrypting other directories can be done by referring to this method.

 

 

arrow
arrow
    全站熱搜

    normanrcastro 發表在 痞客邦 留言(0) 人氣()