If you’re a *NIX guy/gal you might be tempted to bash Windows for not having symolic links. Windows has actually supported a similar feature called Junctions since Windows 2000. The easiest way to manage junctions is with a freeware explorer add-on called NTFS Link. Windows Vista supports several types of links including symbolic links. You can create them with a simple DOS command, however there is one trick - you must create the link as administrator. If you do not run the command as Administrator, you will get an error “You do not have sufficient privilege to perform this operation”

To create a symbolic link in Vista:

Go to Start Menu -> Accessories -> Command Prompt and RIGHT-click the icon. Select “Run as administrator” from the dialog menu. This will open a command prompt window that is running with full administrator permissions. In this window, use the following command to create a symbolic link:

mklink /d c:\mylink c:\sourcefolder

(The /d switch is used for directories. If you are linking a single file, you don’t need the /d.)

To delete links, simply use Windows Explorer. Interestingly you don’t need to run Explorer as administrator, just delete ‘em as you would any file or folder.