vote up 2 vote down star
1

Hi, 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.

flag

6 Answers

vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up -1 vote down

You can create junctsymlinksions in windows with mklink.

edit: If you use Vista.

link|flag
Symlink in windows XP as you see :) – willson Sep 18 '08 at 4:53
vote up 6 vote down

They're called junctions

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

link|flag
+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

Your Answer

Get an OpenID
or

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