1

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?

leeand00
  • 23,552

1 Answers1

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