Error Reparse 741 (0x2E5): Fix it With 4 Steps
The issue occurs when using symbolic links on your PC
2 min. read
Published on
Read our disclosure page to find out how can you help Windows Report sustain the editorial team. Read more
If you’re a system administrator, sometimes you may encounter an ERROR_REPARSE message. This error code appears when working with files, so in today’s guide, we’re going to show you how to fix it.
How can I fix ERROR_REPARSE?
1. Verify the rephrase point
- Open the command line.
- Next, run the following command, but replace the <path> with the destination directory:
dir /al <path>
 - Look for <SYMLINK> or <JUNCTION> in the output.
2. Resolve or update the symbolic link
- Open the command line.
- Next, run the following commands:
del /aL <path>
mklink <path> <new_target> - Remember to replace the values with the correct paths.
This will delete the previous link and create a new one.
3. Give full control to the specific user
- Once again, open the command line.
- Run the following:
icacls <path> /grant <user_or_group>:F
- Remember to replace the path and user with the correct values.
After that, the selected group or users will have full control and the ERROR_REPARSE should be gone.
4. Other solutions to try
- Ensure that the application or script supports symbolic links.
- If working with rsync or scp, ensure they are configured to follow or ignore symbolic links.
- Use correct paths. Symbolic links might work better for absolute paths.
- Use Sysinternals Process Monitor to trace file operations and determine where the symbolic link is pointing.
- Ensure that your file system supports reparse points. For example, FAT32 doesn’t support this feature.
- If you’re writing a script, use the GetFinalPathNameByHandle function to resolve reparse points.
The ERROR_REPARSE often is represented by the following message: 741 (0x2E5) A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
This isn’t the only issue, and we wrote about DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN and ERROR_DYNLINK_FROM_INVALID_RING in our previous guides, so don’t miss them for more information.
User forum
0 messages