A practical guide to recovering older versions of files, folders, and system configuration using restore points, shadow copies, File History, and built-in Windows recovery tools.
Sometimes, but not always. A Windows restore point is mainly designed to roll back system files, registry settings, drivers, services, and installed program configuration. It is not a full backup of your Documents, Pictures, Desktop, downloads, or personal project folders.
Do not run System Restore only because you deleted a personal file. First check Previous Versions, File History, OneDrive version history, backups, and the Recycle Bin. Running a full system restore can remove apps, drivers, and updates installed after the selected restore point.
Use File Explorer to check whether Windows can show an older copy of a file or folder from File History or shadow-copy data.
SafeUse administrator commands to list available VSS snapshots and copy files out without rolling back the whole system.
ManualUse rstrui.exe only when Windows, drivers, updates, or system configuration need to be rolled back.
| Tool | Best for | Can restore personal files? | Risk level |
|---|---|---|---|
| Previous Versions | Recovering an older folder or file version from File Explorer | Yes, if a previous version exists | Low if you copy to a new folder first |
| File History | User libraries, Desktop, Documents, Pictures, and selected folders | Yes, if File History was configured before the loss | Low |
| System Restore | Drivers, updates, registry changes, services, and Windows settings | Usually no; it is not a document backup | Medium because apps and updates can change |
| Windows File Recovery | Deleted files when no backup or previous version exists | Yes, but success depends on drive activity and file overwrite status | Low if recovery is saved to another drive |
If the file was deleted or overwritten recently, every new download, update, browser cache file, or temporary file can reduce your chance of recovery. The safest approach is to avoid installing new software on the same drive and copy recovered files to another disk, USB drive, or external backup location.
If you are trying to recover a document, photo, archive, database, or project file, start with file-level methods. If Windows itself is broken after a driver, update, registry edit, or software installation, use System Restore.
Previous Versions is the safest first place to look because it lets you recover a file or folder without rolling back all of Windows. Depending on your configuration, the list may include versions from File History, backup, or shadow-copy data.
Use Open and manually copy files whenever possible. The Restore button can replace the current folder contents, which may overwrite newer files you still need.
If the file was deleted, right-click the parent folder instead. For example, if the deleted file was C:\Users\Alex\Documents\Report.docx, right-click Documents, open Previous Versions, then browse the old folder version and copy the file out.
If the graphical Previous Versions tab is empty or unreliable, advanced users can check whether Volume Shadow Copy Service snapshots exist. This does not roll back Windows; it only lets you inspect a snapshot and copy files from it.
Use shadow-copy paths for reading and copying only. Do not attempt to edit, delete, or move files inside a shadow copy.
Open Windows Terminal, Command Prompt, or PowerShell as administrator, then run:
Command Prompt (Admin)vssadmin list shadows
Look for lines similar to Shadow Copy Volume:. They usually contain a path like this:
Example shadow-copy path\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy7
Copy the shadow-copy path, add a trailing backslash, and append the folder path you want to inspect. For example:
Example path to an old Documents folder\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy7\Users\Alex\Documents\
Paste the path into the File Explorer address bar. If it opens, copy the needed files to a normal folder on another drive or to a safe recovery folder.
For large folders, use robocopy instead of drag-and-drop. Replace the user name, snapshot number, source folder, and destination folder with your own paths:
Copy files out of a shadow copyrobocopy "\\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy7\Users\Alex\Documents" "D:\Recovered\Documents" /E /COPY:DAT /R:1 /W:1
| Robocopy option | Meaning | Why it is useful |
|---|---|---|
/E |
Copies all subfolders, including empty ones | Preserves the folder tree from the snapshot |
/COPY:DAT |
Copies data, attributes, and timestamps | Keeps file dates more accurate |
/R:1 |
Retries once on failed files | Avoids long stalls on damaged or locked files |
/W:1 |
Waits one second between retries | Makes recovery faster when many files fail |
If File History was enabled before the file was deleted or overwritten, it is usually a better recovery method than System Restore. It is specifically designed for personal files.
System Restore can help when Windows starts failing after a driver update, registry edit, system tweak, or software installation. It should not be treated as a normal file recovery tool, but it can restore system components that were changed after the selected restore point.
rstrui.exe and press Enter.Run dialog commandrstrui.exe
If Windows does not boot correctly, open the recovery environment:
This can repair a broken Windows installation without requiring you to sign in normally. Still, it should be used for system recovery, not as the first method for deleted documents.
Before spending time on recovery, check whether Windows has any restore points or shadow copies to use. If System Protection was disabled before the file was lost, restore-point-based recovery will not help.
rstrui.exe, and press Enter.vssadmin list shadows.You can also list restore points from an elevated PowerShell window:
PowerShell (Admin)Get-ComputerRestorePoint | Sort-Object CreationTime -Descending
This command helps confirm whether Windows has restore points, but it does not guarantee that a deleted personal file is recoverable from them.
If the Previous Versions tab is empty, Windows may not have any file-level history for that folder. This is common on systems where File History was never enabled, System Protection was disabled, or restore points were deleted after a major update or low-disk-space cleanup.
| Problem | Likely cause | What to do next |
|---|---|---|
| Previous Versions tab is empty | No File History backup or accessible shadow copy exists for that folder | Check File History, OneDrive version history, external backups, and vssadmin list shadows |
| Restore points disappeared | Disk space limit was reached, System Protection was disabled, or Windows removed old points | Enable System Protection and increase disk space allocation for future restore points |
| File opens but is corrupted | The saved version was already damaged, incomplete, or overwritten before the snapshot | Try an older previous version or a File History version from another date |
| You need a permanently deleted file | No backup exists and the file was removed from the file system | Stop using the drive and recover to another disk using a file recovery tool |
| System Restore fails | Corrupted restore point, antivirus interference, disk errors, or VSS issues | Try Safe Mode, WinRE, disk health checks, or another restore point |
SystemPropertiesProtection.exe, and press Enter.C:.Open System Protection directlySystemPropertiesProtection.exe
System Restore is designed to preserve personal files, but it can remove programs, drivers, updates, and system changes installed after the selected restore point. Do not use it as a substitute for a file backup.
Only if a previous file or folder version is available through Previous Versions, File History, a backup, OneDrive, or an accessible shadow copy. The normal System Restore wizard is not intended to bring back deleted documents.
The most common reason is that no File History backup or usable shadow copy exists for that folder. Check whether File History was enabled before the file loss and run vssadmin list shadows as administrator to see whether shadow copies exist.
Choose Open first to inspect the version. Choose Copy to save it elsewhere. Use Restore only when you are ready to replace the current file or folder with the selected older version.
No. System Protection and restore points help from the moment they are enabled and created. They cannot create a snapshot of the drive as it existed before protection was turned on.
Stop using the affected drive as much as possible. Restore from cloud version history if available, check other devices, and use a file recovery tool that saves results to another drive. On SSDs, recovery may be difficult if TRIM has already cleared deleted blocks.
To restore personal files, start with Previous Versions and File History. Use shadow-copy browsing only if you are comfortable with administrator commands. Use System Restore when the problem is Windows configuration, drivers, or system files โ not when the only goal is recovering a deleted document. For future protection, keep File History or another real backup enabled and create restore points before major system changes.