Poor man's virtual Drive : Use folder as a virtual Drive
Another poor man's technology, which creates a virtual drive.I'm not sure about it's utility but still it's good.Don't wanna beat the bush,Let's go ahead!
1.Open Command Prompt[Start>Run then Type "CMD" and press enter].
2. Type subst V: C:\fldr and hit Enter key.
Replace V with any drive that doesn't already exist in u'r computer and C:\fldr with a valid folder for which u wanna create a drive.
This creates a new drive which when opened will open your folder !But say what the thing is temporary ; next time u boot the drive disappears.Here's is the solution.
@echo off
subst V: C:\fldr
exit
subst V: C:\fldr
exit
Comments