The system volume information is often kept hidden on Windows for security purposes. This folder stores system files related to restore & backups and content indexing services.
It is located at the root of the system volume and can fill up fast with backup/restore files, content index databases, and Dedup chunks(On Windows Server).
It is not recommended to delete this folder as it can prove to be vital in case the system suffers a crash. Instead, you can free up the disk by cleaning up the contents inside the System Volume Information Folder.
How to Fix ‘System Volume Information Folder Too Large’ Error
Limit the Disk Usage Space for Folder
Whenever the system creates the restore points, the associated files are stored by the Windows on the System volume information folder. If the disk space usage limit is not set for such restore points, it will accumulate data in the folder over time and fill up the disk faster.
It is recommended to configure the disk usage for the system restore up to 15 percent of the total size of the volume.
- Click on the Start button, type Create a restore point and open it.
- Go to the System Protection section.
- Click on the Configure button.
- Reduce the Disk Space usage for system protection by using the Max Usage slider.
- Click on Apply to save changes.
- Finally, restart the computer and check the folder size. The System Volume Information Folder will now shred down to the configured size.
Perform Disk Cleanup
The Volume Shadow Copy Service creates a backup of the data on your computer as a shadow copy. It stores such backups in the System volume information folder. These shadow copies metadata can be cleaned by performing a disk cleanup.
- Press Windows Key + R to open Run.
- Type
C:\windows\SYSTEM32\cleanmgr.exe
, and hit enter. - Select the System volume (on most devices, it’s
C:
) drive and click on OK. - Click on the Cleanup system files button.
- Again, select the system volume and click on OK.
- Go to the More options tab.
- Under the System Restore and Shadow Copies section, click on the Cleanup button.
Delete the System Volume Information Folder from the USB
The system volume information folder usually does not have a huge file size on USB storage devices. However, if the device has been infected by malware and viruses, this folder will show up as a large folder. You also sometimes cannot delete this folder using the normal modus operandi.
- Connect the USB to your Windows device.
- Open the USB volume from File Explorer.
- Right-click on the empty space of the Drive window and select Open in Terminal.
- Now, run this command line in the command prompt.
rmdir "System Volume Information" /s /q
- This will delete the folder in the USB drive. However, it will be re-created once you eject and reconnect the flash drive. This only helps if the folder occupies large disk spaces in the USB.
- Open the File explorer.
- Click on the three vertical dots located at the file explorer’s Toolbar.
- Go to View tab.
- Uncheck the option Hide protected operating files and select the Show hidden files, folders and drivers.
- Click on Apply to save the changes.
Restrict the System From Creating the Folder
You can delete the system volume information with the above-suggested methods. But the system recreates this folder once you reconnect the USB device. This happens if the group policy configurations allow the locations to be indexed in the system volume information folder.
- Press Windows Key + R, type
gpedit.msc
, and hit enter to open the Group policy editor. - Now, navigate to this directory from the panel on the left.
Computer Configuration > Administrative Templates > Windows Components > Search - Search for a Setting Do not allow locations on removable drives to be added to libraries and open it.
- Click on Enable.
- Click on OK to save the changes.
Clean up the System Volume Information folder
On Windows Server, the Data Deduplication service compresses and stores the redundant data in the System Volume Information folder. These chunks of files accumulate and occupy heaps of disk space.
- Open PowerShell and run this command. This will start removing the unused files from the System Volume Information folder.
start-dedupjob -Volume C: -Type GarbageCollection
- Now, use this command to start the data cleansing to fix the data integrity.
start-dedupjob -Volume C: -Type DataScrubbing