up vote 14 down vote favorite
6
share [g+] share [fb]

Related
In .NET, how do I Create a Junction in NTFS, as opposed to a Symlink?

I've tried Winbolic (Windows XP), but I can't get it to work the way I want.

Am I wrong here?

If I create a symbolic link within a folder in my %PATH%, the referenced directory should work as if it had actually been added to %PATH%, right?

link|improve this question

1  
Don't tag not-programming-related. @cheeso – Roger Pate May 24 '10 at 2:19
1  
NOTE: Windows 7 supports sysmlinks. – guillermooo May 24 '10 at 6:28
feedback

11 Answers

Have you looked at Junction? Also, Windows Vista introduced the mklink command line tool to create symbolic links. Scott Hanselman has a write-up on it at http://www.hanselman.com/blog/MoreOnVistaReparsePoints.aspx. If you're speaking solely about Windows XP, I've only ever used the Junction tool.

link|improve this answer
works as required! Thanks. – Jan Galinski May 10 '11 at 9:40
Looks like another option could be the /J switch on mklink (like "mklink /J <JUNCTION> <DIR>"). Note that it isn't a separate executable, it is a command in cmd so if you're calling from PowerShell, you'll have to shell out to cmd (i.e. "cmd /c mklink /J <JUNCTION> <DIR>") – David Mohundro May 10 '11 at 19:14
Wow junction works great. It creates a real symbolic link so even Cygwin will follow it. – styfle Sep 19 '11 at 19:20
feedback

the referenced directory should work as if it had actually been added to %PATH%, right

No, if you had C:\bin added to your %PATH% and inside c:\bin you created a Junction called c:\bin\anotherDir\ to point to c:\anotherDir\ so that you could run some.exe from the command line like:

> anotherDir\some.exe

This would not work since the %PATH% variable does not work with sub directories (symlinked or not)

you would need to create a hardlink directly to some.exe, so the hardlink c:\bin\some.exe points to c:\anotherDir\some.exe

So in summary I don't believe you can do exactly what you are asking. That said I do recommend Link Shell Extension for creating Junctions and hardlinks. It offers more capabilities than most junction tools in a very easy to use windows explorer extension

link|improve this answer
feedback

Try subst


subst r: d:\winnt\system32
subst v: c:\vf

link|improve this answer
feedback

do you mean a hard-link or a soft-link?

a soft-link you can create by drag-drop with right-button.

FSUTIL can be used on the command line

link|improve this answer
Usage : fsutil hardlink create <new filename> <existing filename> Eg : fsutil hardlink create c:\foo.txt c:\bar.txt – bdukes Oct 21 '08 at 16:12
4  
"a soft-link you can create by drag-drop with right-button." This is not right, by dragging and dropping you can create a shortcut to the file which is essentially a .lnk file and stores real file path info. The purpose of the file is to tell Windows Explorer and .lnk aware applications about the real file. It's not a soft-link or symbolic link. – Emre Yazıcı Mar 7 '11 at 4:12
feedback

Try Symlinker a GUI tool to create Symlink in Windows works on all windows Versions

link|improve this answer
feedback

I haven't heard of Winbolic but I'm not aware of anything built-in that will give you this functionality. Perhaps Winbolic just adds some functionality to explorer.exe to simulate symlinks, and this is why it's not working for you in other places?

link|improve this answer
feedback

Windows uses shortcuts as symlinks; there isn't any other way (that I know of) to create the equivalent of a symlink.

The file system does support hard links, but Windows doesn't actually provide a way to do it. I believe sysinternals provides a mechanism for hard links, though.

EDIT: as @David Mohundro pointed out (while I was typing this), Junction is the thing I was thinking of from the sysinternals guys.

link|improve this answer
feedback

A few weeks ago I had the problem to make a symbolic link to a network share. This helped: http://www.pearlmagik.com/winbolic/ :

Winbolic Link creates special folders which serve as links to the contents of another folder. They are functionally similar to "symbolic links" or "symlinks" which unix users are familiar with.

link|improve this answer
feedback

Junction is a great utility but one thing to watch for is that junction points look exactly the same as ordinary folders in Windows Explorer.

Use 'junction.exe -s' on the command line to list all junctions in folders and sub-folders.

link|improve this answer
feedback

Have you tried linkd from Windows 200x Resource Kit? I've heard that it does for pre-Vista versions of Windows same thing that mklink does for Vista which is what you are looking for.

link|improve this answer
feedback

Here is an article that discusses every aspect of symlinks on windows:

http://www.shell-shocked.org/article.php?id=284

link|improve this answer
-1: broken link – deft_code Apr 8 '11 at 4:58
Hopefully the site will come back up. – joedevon Apr 11 '11 at 22:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.