How to mount a folder as a drive

  • Thread starter Thread starter Martin Murray
  • Start date Start date
M

Martin Murray

I know I can mount a disk drive as an NTFS folder, but how do I do the
opposite? I want a certain folder to mount as Drive D:

Thanks for any help in advance,

Martin Murray
 
Martin Murray said:
I know I can mount a disk drive as an NTFS folder, but how do I do the
opposite? I want a certain folder to mount as Drive D:

Thanks for any help in advance,

Martin Murray

Here are a couple of ways:

a) By sharing:
net share xxx="c:\SomeFolder"
net use d: \\%computername%\xxx

b) By substitution:
subst d: "c:\SomeFolder"
 
Back
Top