How do I overcome the "The symbolic link cannot be followed because its type is disabled." error whe
Posted
by David Arno
on Stack Overflow
See other posts from Stack Overflow
or by David Arno
Published on 2008-10-23T13:08:42Z
Indexed on
2010/03/31
20:33 UTC
Read the original article
Hit count: 1527
symbolic-link
|windows-server-2008
Following on from a previous question, I am creating a symbolic link on a Server 2008 from a Vista machine using UNC paths. I can create the link just fine. I can go to the Server 2008 box and double click on the link in explorer to open the target file. What I cannot do though is use FileCreateW to get a handle to the UNC path link (from the Vista box). When I try it, it fails and GetLastError() returns error code 1463 (0x5B7), which is:
The symbolic link cannot be followed because its type is disabled.
Can anyone tell me how to enable its "type" in Server 2008 (assuming the error means what it says)?
© Stack Overflow or respective owner