Windows 10: Move folder from external drive "System Volume Information"

Discus and support Move folder from external drive "System Volume Information" in Windows 10 Network and Sharing to solve the problem; I ACCIDENTALLY (I own my mistake) moved a large folder (My Data) from "E:\" into the "E:\ System Volume Information\." where "E:\" is my local... Discussion in 'Windows 10 Network and Sharing' started by sreyes27, Mar 10, 2019.

  1. sreyes27 Win User

    Move folder from external drive "System Volume Information"


    I ACCIDENTALLY (I own my mistake) moved a large folder (My Data) from "E:\" into the "E:\
    System Volume Information\." where "E:\" is my local external hard drive. To try to undo this, I simple try (Logged in as Administrator)

    >move "E:\System Volume Information\My Data" E:\."

    but I receive the error "Access is denied.". I try
    >icacls "C:\system volume information" /grant Administrator:F
    >icacls "C:\system volume information" /grant Administrator:F /t.
    These command executes and I retry the "move" command again:
    >move "E:\System Volume Information\My Data\." E:\."

    but I get the "Access is denied" error again. How can I undo my mistake of moving "E:\My Data" into the "E:\System Volume Information"?

    (ie.

    >move "E:\System Volume Information\My Data\." E:\."

    ).


    Thank you for your assistance!

    :)
     
    sreyes27, Mar 10, 2019
    #1
  2. alljamin Win User

    Remove System Volume information folder from external drive

    I have currently found out that System Volume information folder on my external HDD takes around 124GB of space. Hence I decided to delete it to free up some additional space. But for now everything what I have tried did not succeeded.

    IMPORTANT:

    • External hard drive has 1TB capacity and was previously used for backups and creating restore images (not anymore).
    • It's connected via USB 3.0 port.
    • System protected files are displayed.
    • All operations are performed on the clean install of Windows 10 Pro x64.
    • Formatted in NTFS
    • I only have one 1TB drive so moving files to another drive will not be an option.

    So, what I have tried for now:

    All the instructions provided here, meaning:

    1. takeown /f "F:\System Volume information" /a /r /d y
    2. icacls "F:\System Volume information" /t /c /grant administrators:F System:F everyone:F
      ("Are you sure?") y
    3. rd /s /q "F:\System Volume information"

    This only helped me to delete one of the folders with a bunch of .db files in System Volume information folder. And I get Access denied as previously.

    What I also thought of is to create a separate partition on this drive and move all the files there then format the partition with System Volume information and merge partitions back. This did not work quite well as creating new partition also created a System Volume information folder. And it took quite a while to do the partitioning.

    I have gone though following posts:

    How to delete "System Volume Information" folder from external drives?

    How to delete a folder from external drives if names are too long (like System Volume Information/content...)?

    Any suggestions guys?

    NOTICE: I don't want to use third party software like Unlocker, Eraser or anything similar to these two. There should be a legit way to get rid of the files in Windows without third party software.
     
    alljamin, Mar 10, 2019
    #2
  3. alljamin Win User
    Remove System Volume information folder from external drive

    As I did not receive any other answers to my question and it is still open - I decided to provide my own answer.

    Here is the approach what does not involve installing any third party solution. The original solution can be found here.

    Here is the quick re-cap of the mentioned above solution:

    1. You need to TakeOwnership over the System Volume information folder. For doing so, you need to create TakeOwnership.reg file which can also be downloaded here.
      This is what goes inside the TakeOwnership.reg file:

      Windows Registry Editor Version 5.00

      [HKEY_CLASSES_ROOT*\shell\runas]
      @="Take Ownership"
      "NoWorkingDirectory"=""

      [HKEY_CLASSES_ROOT*\shell\runas\command]
      @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
      "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"

      [HKEY_CLASSES_ROOT\Directory\shell\runas]
      @="Take Ownership"
      "NoWorkingDirectory"=""

      [HKEY_CLASSES_ROOT\Directory\shell\runas\command]
      @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
      "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
    2. For the created TakeOwneship.reg file to take effect you need to run it, meaning just double-click on the newly created file.
    3. After Taking ownership (running the .reg file) you need to run following commands in command prompt (opened with Administrator privileges):
      1. Attrib -s -h -r "{drive}:\System Volume information" /S /D
      2. RD "{drive}:\System Volume information" /S

    Where {drive} is the letter what your external drive has.

    That all the steps what I have taken in order to be able to delete the System Volume Information folder from the external HDD. This worked fine for my machine Win 10 Pro x64 and I've got my extra 124GB.

    @Scott in his comments points out for a missing explanation for a more precise description of what exactly these commands do as well as proving why this method exactly works and other methods do not work.

    • Regarding to the meaning of the commands - I am not aware exactly what they do, I can only refer "primitively" that these shell commands help to take "full ownership" of this particular folder (more precise/technical description is welcome).
    • This method "works" better than others, because I was not able to find any other method what actually "work". And only following precisely these steps helped me to delete the folder in order to free up space on my external HDD.

    Hope this will help others who have similar issue.
     
    alljamin, Mar 10, 2019
    #3
  4. MichaelS Win User

    Move folder from external drive "System Volume Information"

    Remove System Volume information folder from external drive

    In my experience the answer to limiting the space used by System Volume Info on an external drive is NOT to delete it, as it returns again. Here's what worked for me (Windows 10 X64).

    1. Tell Windows not to index that drive.

      (a) In My Computer (or This PC) right-click the external drive, on General tab clear the "Allow files to have contents indexed" checkbox.

      (b) Search Windows for "Indexing Options" & run. Click Modify and clear the checkbox next to your external drive. (Say yes to "folders and sub-folders as well" & click Apply, then be patient.)
    2. Tell Windows not to create restore points on that drive.Search Windows for "restore point" & run. Click on Create a Restore Point. Click the external drive, then the Configure button, and select Disable System Protection.
    3. Limit Windows' "Shadow Copy" feature on the external drive [without disabling the service, which would affect all drives].
      Open an elevated command prompt.

      To list the space currently used by shadow copies:
      vssadmin list shadowstorage

      To limit the space used by shadow copies on Drive F to 1gb:
      vssadmin resize shadowstorage /on=F: /For=F: /Maxsize=1GB

      To validate changes:
      vssadmin list shadowstorage

    Note: the source of the vssadmin commands: http://lifeofageekadmin.com/disappe...-2008-r2-caused-by-system-volume-information/
     
    MichaelS, Mar 10, 2019
    #4
Thema:

Move folder from external drive "System Volume Information"

Loading...
  1. Move folder from external drive "System Volume Information" - Similar Threads - Move folder external

  2. SystemRestore folder in System Volume Information folder DELETION

    in Windows 10 Network and Sharing
    SystemRestore folder in System Volume Information folder DELETION: Hello, I have Windows 10 Pro. I tried to restore my system to a previous restore point recently but this failed IDK why but no problem, my problem was fixed..But I found that the C drive became filled with 20 GB out of nowhere... After searching in this problem I found that a...
  3. SystemRestore folder in System Volume Information folder DELETION

    in Windows 10 Gaming
    SystemRestore folder in System Volume Information folder DELETION: Hello, I have Windows 10 Pro. I tried to restore my system to a previous restore point recently but this failed IDK why but no problem, my problem was fixed..But I found that the C drive became filled with 20 GB out of nowhere... After searching in this problem I found that a...
  4. Moving files from system volume information

    in Windows 10 Network and Sharing
    Moving files from system volume information: Hi, I just faced this problem and need help with it , I accidentally dragged one of my folders to "system volume information" folder on my external drive and it moved there. when i wanted to move it back nothing happened even deleting it doesn't work and i need these files ,...
  5. Moving files from system volume information

    in Windows 10 Gaming
    Moving files from system volume information: Hi, I just faced this problem and need help with it , I accidentally dragged one of my folders to "system volume information" folder on my external drive and it moved there. when i wanted to move it back nothing happened even deleting it doesn't work and i need these files ,...
  6. Moving files from system volume information

    in Windows 10 Software and Apps
    Moving files from system volume information: Hi, I just faced this problem and need help with it , I accidentally dragged one of my folders to "system volume information" folder on my external drive and it moved there. when i wanted to move it back nothing happened even deleting it doesn't work and i need these files ,...
  7. accidentally move folder to "System Volume Information" on a external exfat drive

    in Windows 10 Network and Sharing
    accidentally move folder to "System Volume Information" on a external exfat drive: si have accidentally move a 430gb folder to the "System Volume Information" folder and i cant delete or move the folder did anyone can help me ? https://answers.microsoft.com/en-us/windows/forum/all/accidentally-move-folder-to-system-volume/fc2150e0-ff76-4f69-a9c4-26a8c8360f03
  8. System Volume Information and moving the Desktop folder

    in Windows 10 Network and Sharing
    System Volume Information and moving the Desktop folder: Hello, I wanted to move the desktop folder to another Drive from C: drive to E: drive since I have everything in the Desktop and my C: drive was running out of space. The E: drive was completely empty as I had just installed it. I moved the location of the desktop by going...
  9. Trouble with moving folder from external drive

    in Windows 10 Backup and Restore
    Trouble with moving folder from external drive: Hi all: I've just put together a new machine and bought a new Windows 10 CD and installed the OS. All that went fine. I have a LOT of folders & files that I'm trying to move from external drives over to the Windows machine. I've only been able to move a few and then it just...
  10. System volume information folder questions

    in Windows 10 Support
    System volume information folder questions: First question, the winre.wim file is at 96% fragmented and I cannot defrag the system information folder. How can I get that fragmented file to defrag? Second question, I have unchecked the hidden system folder so I can try and delete the system volume folder, which...