Creating symlinks in Windows
Last updated: 10/05/2006 14:45:11
Since Windows 2000 you can create symlinks in several ways, the easiest is using Sysinternals tool "Junction".
Once you have downloaded it from the link below and copied it into your path, you can create symlinks in the following way:
junction <junction directory> <junction target>
eg: junction Temp c:\tmp
To delete:
junction -d <junction directory>
Original URL: http://www.sysinternals.com/utilities/junction.html |