My backup keeps failing with error code 0x81000037 and Microsoft's KB says that I have reparse points somewhere that are causing this. How can I find them in a large group of files and folders?
Asked
Active
Viewed 1.0k times
1 Answers
4
dir *directory* /AD /S | find "<JUNCTION>"
To save to a file:
dir *directory* /AD /S | find "<JUNCTION>" > *filename*.txt
On Windows 7 (not sure about Vista), you can also use:
dir /AL /S
to search for Reparse Points. This should be a lot faster than going through the whole directory contents then piping it to find.
Hello71
- 8,673
- 5
- 42
- 45