Possible Duplicate:
Does window have the ln -s or equivalent?

Is there an equivalent ln command to create symlinks in Windows?

link|improve this question
feedback

migrated from stackoverflow.com Feb 21 '10 at 14:44

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by DMA57361 Jun 22 '11 at 9:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 10 down vote accepted

Yes. Among others, there is mklink: Using Symlinks in Windows Vista

A good blog article on the subject, if you're interested in the history, is here.

There's exhaustive documentation (from the API perspective) on Symbolic Links and Windows at MSDN: Symbolic Links

link|improve this answer
feedback

Be aware that mklink is not available in PowerShell. It is a built-in command available only in cmd.exe. The PowerShell Community Extensions has a New-SymLink cmdlet in it if you need this support in PowerShell.

link|improve this answer
1  
You could also call cmd /c mklink ... which might be a little less intrusive than installing PSCX :-). – Joey Feb 21 '10 at 11:54
feedback

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