Can I create a Windows Junction (Symbolic Link) aliased to a Drive Letter?

5,565

I want to create E: that links to say V:\OldE

If you no longer have a drive E: on the new computer you can use the subst command:

subst E: V:\OldE

Further Reading

Share:
5,565

Related videos on Youtube

Daimon
Author by

Daimon

I started programming in high school, making my own versions of popular games (Lunar Lander). I wrote some parts in Assembly Language. I eventually bootstrapped a healthcare startup to $3M revenue. I began my professional career working for consulting firms, then started my own software company and created 17 programs providing speech therapy to stroke survivors . I marketed and sold it worldwide. A few years ago, I fully automated my company so it wouldn’t need my involvement, freeing me for new challenges. I’ve spent my career helping technical and non-technical stakeholders understand each other’s needs. A few years ago, I returned to consulting, sharpening my skills in areas that I most enjoyed as a business owner. As I took classes and read a wide range of books, what particularly resonated was the importance of listening. For example, each sale happens in the prospect’s mind. They know what they want. They’ll tell us if we ask and listen with genuine curiosity. I first learned this selling our software. After I explained what a patient needed, caregivers often asked “how did you know exactly what we need?”. I just smiled, never revealing my secret: I asked curious questions. You told me. I listened. It turns out, that’s helpful in all sales, and all communication. I’ve loved consulting with a variety of businesses, but I miss learning & growing with a team working toward a common purpose. My Resume Portfolio

Updated on September 18, 2022

Comments

  • Daimon
    Daimon over 1 year

    I have a bunch of data files on an E:\ drive. I'm moving all of that to a new computer and would like to consolidate many small drives (E, P) to one larger drive.

    But I want all the programs referring to E:\ to "see" the files on V: So I want to create **E:** that links to say *V:\OldE*

    Can I use MkLink or similar like Linkd utility in that way? Perhaps I need to create a very small E:\ partition and then do an MkLink from E:\ to v:\oldE ?

    (It seems like you can NOT do that, but I wanted to check)

  • Daimon
    Daimon over 7 years
    I have used that before, my understanding (and my distant recollection) is that subst does not work for ALL programs universally. I have used that before,
  • DavidPostill
    DavidPostill over 7 years
    @ClayNichols I don't know of any specific limitations, other than the recycle bin will no longer work (files are permanently deleted and not moved to the bin).
  • Joseph
    Joseph about 3 years
    This doesn't answer the question. Please keep the answers section to actual solutions to the problem.