there. The question is how to make the similar thing like symlink in windows like in *nix. It's really hard to write whole path to the file in console (even using [tab], it's not the way if you need to change language). Adding everything in PATH is tiring too. It'll be great to make a symlink running one command.

Actually I'm looking for console app.

link|improve this question
feedback

7 Answers

They're called junctions

And if you want a GUI to do it for you...

link|improve this answer
+1 for good answer, but I don't think there's anything as easy or as good as linking in posix. – J D OConal Sep 18 '08 at 4:50
Be sure to check out the comments in the "junctions" article hyperlinked above. Many respondents disagree that the steps listed in the article relate to true NTFS junctions. The link from MotoWilliams' response points to a more authorative MSDN treatment. – MikeC Aug 22 '11 at 19:58
feedback

Back when I was on windows I used to use a hardlink shell extension. Not sure if this is the same one, but give this one a try: Link Shell Extension.

link|improve this answer
Indeed it is a very convivient utility. – mezhaka Feb 10 '11 at 14:27
feedback

As with most things, SysInternals has you covered this time with Junction

link|improve this answer
feedback

I used subst first, it makes to do the path easier, but with mounting virtual disk, so as typicalrunt said, I used junction :) you can download here

syntax:
/* to make a symlink use command: */
junction Disk:\path\to\mount\point Disk:\path\to\something\to\mount
/* to delete it, use a key [-d], so it'll be like: */
junction -d Disk:\path\to\mount\point Disk:\path\to\something\to\mount
link|improve this answer
Thanks for pointing out the syntax. – stefanglase May 17 '10 at 6:25
feedback

Older question with longer discussion: How to create symbolic links in Windows?

link|improve this answer
feedback

There's an Open source GUI Tool for Creating Symlinks in windows

link|improve this answer
feedback

You can create junctsymlinksions in windows with mklink.

edit: If you use Vista.

link|improve this answer
1  
Symlink in windows XP as you see :) – willson Sep 18 '08 at 4:53
feedback

Your Answer

 
or
required, but never shown

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