Today, I thought I’d briefly touch upon Mapped Drives to provide a couple important tools that any developer should have to properly, quickly and easily work with Mapped drives.
Mapped Drives
A mapped drive is just a shortcut to a drive that’s physically located on a different computer.
LifeWire
It allows you to designate a local drive letter to an external resource. For example, you could assign the Z: drive letter to a remote share \\SomeServerName\ShareName (UNC path)_. This way the user doesn’t need to know the actual path and can simply use the Z: drive from Windows explorer.
The same principle is true when Linking Tables within a database, instead of using the full UNC path, they can simplify their lives, and simply used the Mapped drive instead. That said, there have been issues in the past with Mapped drives with Access, and it is highly recommend that table links always be established with UNC or IP based path. This is part of the reason for this article, to show how you can determine the full path from an existing Mapped Drive.
Determine the Path of a Mapped Drive Manually
Let’s look at a few techniques that can be used to manually determine the full path of a Mapped Drive.
Continue reading →