Archive for June 17th, 2008



Vista Trick : Symbolic Links

June 17th, 2008 by Luc-Eric. Viewed 954 times.

It’s possible to create symbolic links in Windows Vista just like in Unix. This is helpful if you need to make a directory or file appear to be in different location. In a command prompt:
mklink /D d:\alias_location d:\actual\location\of\directory
The /D stands for directory link, because file links are also supported. Even better, [...]