使用Network Recycle Bin启用映射网络驱动器上的回收站

前言

在内网环境中咱们常常会使用NAS或者Samba在Windows中映射网络驱动器,方便局域网用户实时共享交换数据。但当存储在网络或映射网络上的任何文件被删除时,该文件将被永久删除。它不会去到本地计算机回收站,也不会去到服务器的回收站,我经过google在mydigitallife和microsoft technet中搜索到不少方法,但针对不一样操做系统且涉及到域用户管理的复杂状况下,单纯的依赖注册表修改可能已经支撑不住需求的膨胀了。在全部的方法中使用Network Recycle Bin能够轻松解决映射网络驱动器上的回收站。html

使用Network Recycle Bin为局域网巧设“回收站”

更新历史

2018年04月20日 - 初稿git

阅读原文 - https://wsgzao.github.io/post...github

扩展阅读windows

Network Recycle Bin Tool - http://www.networkrecyclebin....服务器


如何启用映射网络驱动器上的回收站

映射驱动器不过是将本地驱动器链接到另外一台计算机上特别分配的共享目录或文件夹。 一旦驱动器被映射,您就能够访问共享资源,您能够像对待您的系统本地同样对待它。能够将多个计算机驱动器映射到共享资源,并利用此网络空间。网络

当存储在网络或映射网络上的任何文件被删除时,该文件将被永久删除。 它不会去到本地计算机回收站,也不会去到服务器的回收站。 为了不未来出现这种数据丢失状况,您能够在映射的网络驱动器上启用回收站。 按照如下给出的步骤在映射的网络驱动器上启用回收站.app

  1. 将网络驱动器映射到要使用的网络共享。 确保登陆后从新链接驱动器
  2. 而后进入C:> 用户 > 用户名
  3. 右键单击该位置的任何文件夹,而后单击 属性 > 位置选项卡
  4. 单击移动并浏览根驱动器(在步骤1中映射),而后点击选择文件夹
  5. 而后点击 好 并当对话框出现命中 是
  6. 只需在PC上为每一个用户重复这些步骤

注意:要验证此过程是否正常工做,请右键单击回收站并转至属性,并检查网络驱动器是否在回收站的位置列中列出。ide


须要注意的事情post

这仅适用于经过映射的网络驱动器而不是UNC路径访问的文件。 咱们举一个例子:若是你已经将\servershare映射到E:并从这个E:驱动器中删除了一些东西,那么它将会进入回收站。 可是,若是您浏览到\servershare并擦除文件,它将被永久删除。测试

Enable Recycle Bin on mapped network drives

方案1,经过重定向文件位置的方式我本身在Windows 10下测试可用,但Windows 7失败了

https://forums.mydigitallife....

You may have noticed that when you delete a file stored on a network location or mapped network drive that the file is permanently deleted. It does not go to the local computer's recycle bin and does not go to the server's recycle bin. I have discovered a work-around that extends recycle bin coverage to include mapped network drives. The solution is not 100% perfect, but works extremely well and does not rely on Shadow Copies or 3rd-party software.

Here's how:

  1. Map a network drive to the network share you want to use. Make sure that the drive is re-connected on logon. If you don't know how to do this, search Google.
  2. Browse to C:users<user name>.
  3. Right-click on one of the folders in this location (I chose saved games) and click properties.
  4. Select the Location tab.
  5. Click Move, browse to to root of the drive you mapped in step 1, and click Select Folder.
  6. Click Ok and click yes in the dialogue box that appears.
  7. Repeat these same steps for all users on the computer.
方案2,经过修改注册表搞定回收站问题,实际测试喜忧参半,通用性不高,不推荐

https://social.technet.micros...

Just copy and paste the following into notepad
and save it as "Network Recycling Bin - auto make registry file.bat"

echo off 
REM ========== MAIN FUNCTION  ======================== 
  
Call :CreateREGfile 
PAUSE 
goto :eof 
  
  
  
  
REM ========== SUB FUNCTIONS  ======================== 
  
:CreateREGfile 
set /p RelativePath=Enter current mapped path of drive (e.g. X:\FileShare\D_Drive): 
REM replace \ with \\ (for reg value its a requirement) 
Set RelativePath=%RelativePath:\=\\%  
  
  
set /p MaxBinSize_Dec=Enter max size (in mb) (eg 11gb=11000): 
call :toHex %MaxBinSize_Dec% MaxBinSize_Hex 
  
  
Set outputREG="Network Recycling Bin - %RelativePath:~0,1% Drive (%MaxBinSize_Dec%mb).reg" 
  
  
call :MakeGUID_VBS NewGUID 
REM echo My new GUID : %NewGUID% 
  
  
echo Windows Registry Editor Version 5.00 > %outputREG% 
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\%NewGUID%] >> %outputREG% 
echo "RelativePath"="%RelativePath%" >> %outputREG% 
echo "Category"=dword:00000004 >> %outputREG% 
echo "Name"="NetworkDrive2RecyclingBin_%NewGUID:~1,5%" >> %outputREG% 
      REM The "Name" value is required, but is not the name that will be shown if you right-click on the Recycle Bin and select properties. That will be autoset to the network drive name. 
echo.>> %outputREG% 
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BitBucket\KnownFolder\%NewGUID%]  >> %outputREG% 
echo "MaxCapacity"=dword:%MaxBinSize_Hex% >> %outputREG% 
echo "NukeOnDelete"=dword:00000000 >> %outputREG% 
goto :eof 
  
  
  
:MakeGUID_VBS 
echo set obj = CreateObject("Scriptlet.TypeLib") > TEMP_generateGUID.vbs 
echo WScript.Echo obj.GUID >> TEMP_generateGUID.vbs 
FOR /F "usebackq tokens=*" %%rin (`CSCRIPT "TEMP_generateGUID.vbs"`)DO SET RESULT=%%r 
set %1=%RESULT% 
  
del TEMP_generateGUID.vbs 
goto :eof 
  
  
:toDec 
:: todec hex dec -- convert a hexadecimal number to decimal 
::             -- hex [in]      - hexadecimal number to convert 
::             -- dec [out,opt] - variable to store the converted decimal number in 
SETLOCAL 
set /a dec=0x%~1 
( ENDLOCAL & REM RETURN VALUES 
    IF "%~2" NEQ "" (SET %~2=%dec%)ELSE ECHO.%dec% 
) 
EXIT /b 
  
  
:toHex 
:: eg  call :toHex dec hex -- convert a decimal number to hexadecimal, i.e. -20 to FFFFFFEC or 26 to 0000001A 
::             -- dec [in]      - decimal number to convert 
::             -- hex [out,opt] - variable to store the converted hexadecimal number in 
::Thanks to 'dbenham' dostips forum users who inspired to improve this function 
:$created 20091203 :$changed 20110330 :$categories Arithmetic,Encoding 
:$source http://www.dostips.com 
SETLOCAL ENABLEDELAYEDEXPANSION 
set /a dec=%~1 
set "hex=" 
set "map=0123456789ABCDEF" 
for /L %%Nin (1,1,8)do ( 
    set /a "d=dec&15,dec>>=4" 
    for %%Din (!d!)do set "hex=!map:~%%D,1!!hex!" 
) 
rem !!!! REMOVE LEADING ZEROS by activating the next line, e.g. will return 1A instead of 0000001A 
rem for /f "tokens=* delims=0" %%A in ("%hex%") do set "hex=%%A"&if not defined hex set "hex=0" 
( ENDLOCAL & REM RETURN VALUES 
    IF "%~2" NEQ "" (SET %~2=%hex%)ELSE ECHO.%hex% 
) 
EXIT /b 
  
  
:eof

Network Recycle Bin Tool简介

本文主要使用Network Recycle Bin Tool Personal Client Machine Edition客户端

Server Edition

version 6.1.1.3

This version has been designed for the server usage. You should install it on the server to monitor shared folders. When network user will delete a shared file it will copy it to the "network recycle bin". You have not install any additional software on client machines.

Personal Client Machine Edition

version 5.2.3.8

When you delete a file stored on a network location or mapped network drive that the file is permanently deleted. It does not go to the local computer's recycle bin and does not go to the server's recycle bin.

How to enable a recycle bin for shared folders on a network ? There is the proper solution of restoring and securing your information even after deleting it - The Network Recycle Bin Tool allows you to recover deleted files.

Once you have this tool in your system, it will automatically keep a track of all the network deleted files and you can easily recover them. Instead of removing the files, this tool sends them directly to its predefined recycle bin folder.

There are various options to tune it up. For example: you can set size limits for files stored in the Network Recycle Bin, you can define the list of network drives or network folders to track deleted files.

Additionaly it offers you the Protect Files tool which prevents deletion of network files for specified folders according the file mask. Export and import functions help you to install software with same options on network machines. The password control disallows unauthorized access.

In the long run, losing your important network files and information accidentally is not an issue these days. Instead of getting anxious and worried, feel free to download network recycle bin tool from any reliable source and make sure that you have pre-installed this recovery tool.

Network Recycle Bin Tool使用方法

使用方法很是简单,安装好Network Recycle Bin Tool只须要4步便可,其它需求能够自定义Options
  1. 选择Protect Folders添加你须要保护的的映射网络驱动器
  2. Options中确认删除文件的存储路径,默承认以不修改
  3. 在映射网络驱动器中尝试删除测试文件,在Deleted Files能够看到删除的文件
  4. 能够批量选中要恢复或者删除的文件点击Recovery Files或者Delete Files



相关文章
相关标签/搜索