Deleting your files is sometimes just too easy to do, here what you can do in order to save what you may have lost.
Before using Windows File Recovery, first make sure that your files aren’t still on your computer in the recycle bin.
To access the recycle bin, press the start button and search for Recycle Bin
. A file explorer menu should then be shown that will show you what items remain in your recycle bin. If the files you are looking for are there, right click on them and choose restore
in order to restore your file. If the files are not there, you will have to try an alternative method.
If the files are not available in your recycle bin, the first thing you should do is turn off your computer. The more you use the drive the files were deleted from, the less of a chance you have of being able to recover your files. This is due to what deleting files actually does, which is explained more at the end of this post. If possible, it is recommended to complete the rest of this tutorial on a different computer.
Before you can get started with Windows File Recovery, there are a couple things you need:
The first thing you will need to do is install the Windows File Recovery software, which is available on the Microsoft Store
Now that you have Windows File Recovery installed, run it, and it should open a command line that looks something like this:
Windows File Recovery
Here you can run the winfr commands, which are all used to recover deleted files. The base usage of the command is:
winfr source-drive: destination-folder [/mode] [/switches]
The source drive
is the drive that the deleted files were deleted from. If you are connecting the drive to a different computer, it will likely be D:
, however you should check which drive it is connected as through your file explorer under This PC
The destination-folder
is the folder you want to put the recovered files into. This cannot be on the same drive you are recovering files from
The mode
is the recovery mode you want to be using. There are three options for the mode you want to:
normal
(or ntfs
) is used for healthy drives that use NTFS. Assuming that you have only deleted the files, and nothing has happened to the drive itself, this is what you should use.segment
is used for slightly damaged drives that use NTFS.signature
is used for slightly damages drives of any kind, and will likely take a long time to complete.Filters can be used to specify what files you want to recover. This is useful when you know the name of the file that you deleted and just want to recover that one file. You set a file by adding /n <filter>
to your recovery command.
For example, if you deleted a family picture, you can run a command like this:
winfr D: C:\RecoveryDestination /ntfs /n FamilyPicture2020.jpg
Or if you deleted a word document but can’t seem to remember what the name was:
winfr D: C:\RecoveryDestination /ntfs /n *.docx
Or if you somehow deleted all of your documents:
winfr D: C:\RecoveryDestination /ntfs /n Users\<username>\Documents\
You can alternatively use the /y
filter to define a set of extensions to recover. This filter can only be used on signature
mode.
For example, if you deleted that family picture but you can’t remember what the name was or if it was a jpg or a png:
winfr D: C:\RecoveryDestination /signature /y:jpg,png
You can also specify multiple /n
filters, so you can do this in a different way:
winfr D: C:\RecoveryDestination /ntfs /n *.jpg /n *.png