Tradebox Tradebox Helpdesk

Latest version of Tradebox is V2.0.260730.0 published on 30/07/2026

UNC Path vs Mapped Drive

A UNC (Universal Naming Convention) path is the direct network address of a shared resource, while a mapped drive is a local drive letter assigned to that same network resource for user convenience. A mapped drive is essentially a shortcut to a UNC path.

 

Where using Tradebox, we would always recommend using a UNC path over a mapped drive.

 

You can find a UNC path from a drive letter in Command Prompt by typing net use and pressing Enter. The command will display a list of your mapped drives, showing the local drive letter under the “Local” column and its corresponding UNC path under the “Remote” column. 

 

UNC path

A UNC path is the fundamental way to specify a shared resource on a local network. It is always written in the format 

\server-nameshare-namefolderfile

.

 

 

Pros:

  • Reliability: It does not depend on a specific user session or drive letter availability, making it ideal for scripts and automated tasks.
  • Portability: UNC paths are universally understood on the network, ensuring any machine can use the path as long as it has permissions.
  • Clarity: The server and share names are explicit in the address, which can be useful for troubleshooting.
  • Security: UNC paths are often required for tasks involving services running with different credentials, helping to avoid issues with user-specific drive mappings. 

 

Cons:

  • User-friendliness: The syntax can be more difficult for some users to remember and type repeatedly.
  • Legacy application compatibility: Some older applications may not be compatible with UNC paths and require a traditional drive letter.
  • Command Prompt limitations: The standard Windows Command Prompt (CMD) does not natively allow you to navigate into a UNC path using the cd command without a work-around. 

 

Mapped drive

A mapped drive is a convenience feature that assigns an unused drive letter (e.g., 

Z:

H:

) to a network location specified by a UNC path.

 

 

Pros:

  • Ease of use: Drive letters are familiar and simple for users to access through Windows File Explorer.
  • Improved compatibility: Some older software requires a drive letter and cannot interpret UNC paths.
  • Integration: The mapped location appears as part of your computer’s local storage in File Explorer, simplifying file management.
  • Offline files: With mapped drives, it is possible to enable Windows’ “Offline Files” feature, which caches network files locally. 

 

Cons:

  • Session-dependent: Mapped drives are tied to a specific user’s login session. If a user logs out or if the network connection drops, the drive mapping can be lost.
  • Limited resources: There are only 26 letters in the alphabet to use for drive letters, which can be an issue in large network environments.
  • Inconsistent environments: In corporate environments, different users may have the same drive letter mapped to different network locations, creating confusion.
  • Security complications: The fact that mappings are tied to a user session can introduce complexities when dealing with elevated privileges, potentially causing disconnects. 

 

Which one should you use?

 

Feature  UNC path Mapped drive
User experience Can be cumbersome for manual, everyday tasks. Straightforward and easy for most users.
Reliability More reliable for scripts and automated processes. Less reliable for scripts due to its reliance on user sessions.
Compatibility Works with most modern applications. Required for some legacy applications.
Visibility Displays the full server and share name. Obscures the full path behind a single drive letter.
Best for… Administrators, developers, and automated processes. End users and general daily file access.