How can one find Reparse Points in Windows 7?

9,954

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.

Share:
9,954

Related videos on Youtube

leeand00
Author by

leeand00

Projects jobdb - Creator of Open Source Job Search Document Creator/Tracker http://i9.photobucket.com/albums/a58/Maskkkk/c64nMe.jpg Received my first computer (see above) at the age of 3, wrote my first program at the age of 7. Been hooked on programming ever since.

Updated on September 17, 2022

Comments

  • leeand00
    leeand00 almost 2 years

    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
      leeand00 almost 14 years
      I noticed alot of the junctions are in the C:\Users\Users\<Username>\AppData folders, and that I got alot of error loggings about those folders. So I'm going to try and remove those from the backup. Geez Microsoft you'd think you could give us a list of the bad junctions at least.
    • leeand00
      leeand00 almost 14 years
      (in the error message...)
    • Jonas Heidelberg
      Jonas Heidelberg over 12 years
      Note that generally you don't need to remove all reparse points, but only those of type "mounted volume", and only if they are at least partially including stuff in one of your "Libraries". See here for my detailed answer.
  • leeand00
    leeand00 almost 14 years
    Okay well that found them. But there's soo soo many of them!