How to Mount a Folder as a Drive in Windows 11
Mounting a folder as a drive in Windows 11 lets you turn any regular folder into a fake hard drive with its own letter, like Z: or V:. This trick makes a deeply buried folder show up right next to your C: drive in File Explorer , so you can open it with a single click instead of digging through endless subfolders.
You can set this up in Windows 11 using a built-in tool called Command Prompt without installing any extra software. It works just like plugging in a USB flash drive, but points straight to a folder already sitting on your PC.
Mount a folder as a drive using the subst command in Windows Terminal. Open Terminal, type subst X: C:PathToYourFolder, replacing X: with your desired drive letter and C:PathToYourFolder with the actual folder path. Your folder will then appear as a new drive in File Explorer .
What You Will Need
- A Windows 11 computer
- Access to Windows Terminal, PowerShell, or Command Prompt
- The folder you want to mount
Steps to Mount a Folder as a Drive
Step 1: Open Windows Terminal
Click the Start button , type Windows Terminal into the search bar, and launch the application. This command-line interface (a text-based control panel for running system commands) combines PowerShell, Command Prompt, and other shells under one roof.

Step 2: Check Existing Mounted Drives
Running the mountvol command reveals your currently active folder connections. Typing `mountvol` and pressing Enter displays a list of existing folder-to-drive mappings, proving the system's ability to treat a directory like a physical disk.
substStep 3: Mount Your Folder as a Drive
Type this command and press Enter:
subst X: C:\PathToYourFolderReplace C:\PathToYourFolder with the actual, full path to the target folder. This example shows the proper syntax:
subst B: "C:\Users\UserName\Documents\Business"Step 4: Access Your New Drive
Open File Explorer and look under 'This PC'. The newly assigned drive letter appears here, providing direct access to the folder contents upon clicking.
Step 5: Remove the Mounted Drive (If Needed)
Reverting this change requires reopening Windows Terminal and running a specific command:
subst B: /DSubstitute B: with the letter of the drive targeted for removal.
Summary
Mounting folders as drives in Windows 11 accelerates file retrieval. This method streamlines data management and organization. Administrators and power users leverage these virtual drives to maintain efficient access to frequently used directories.
Can I mount a folder as a drive?
Method 1 — The quick way: SUBST (Command Prompt) The fastest and most widely used method to mount a folder as a drive letter is the built‑in SUBST command. SUBST creates a virtual drive letter that points to a folder on your computer.
How to make a folder as a drive?
Right-click the 'This PC' icon and select 'Map network drive...'. Then, type or paste the file path, pick a drive letter (any available letter works), and click 'Finish'. Browsing is available when the full path remains unknown.
How to mount a folder as a CD drive?
Designate the destination path according to your specific folder structure and paste the command into the terminal. Pressing enter applies the configuration, rendering the directory visible as a virtual drive within File Explorer.
Can you Map a folder as a network drive?
In the Folder box, type the path to the shared network folder (the format is \hostnamesharename, where hostname is the name or IP address network device and sharename is the name of the shared network folder). Clicking Browse helps locate network directories before clicking Finish.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!