On Thu, 11 Mar 2010 21:41:39 -0600, John Mayson <>
wrote:
>I am running Windows 7, but this would pertain to earlier versions too.
>
>I have access to a share, I'll call it \\SERVER\Documents. I know how to
>mount that to a drive letter. That is not what I want to do. Instead I
>want to map it to my C:\Users\username\Documents. Is that even possible?
>I have searched online and others have asked this only to be told how to
>map to a drive letter. That's NOT what I want.
>
If you don't have an actual objection to mapping the drive, you could
map \\SERVER\Documents to a letter (e.g. "F:"), then do this:
c:\users\username> mklink /d documents F:\
You would need to make sure \documents does not exist in \username,
which probably means removing the existing documents folder.
Also, I don't know how windows will react to documents being on a
network drive. I see two possible issues: one is windows looking for
documents at some point in startup/login, since it's a moderately
special folder. If windows goes looking for it before the connection
is mapped as part of your login, it might have issues or actually try
to create it.
The second is a speed issue: when an application's File ->Open or
->Save or _>Insert (etc) type operation is engaged, many of them
default to username\documents. Based on my experience doing similar
things in Vista, I'd expect some relatively serious delays. Vista does
not seem to handle network access very well in general and
specifically when doing tricks like this. Win7 might be better.
So, you might have to pilot it a bit. Other folders might not be as
critical, but "documents" is a little different.
|