As storage usage on Windows PCs keeps growing, many users look for smarter ways to organize files and simplify access to deeply nested folders. That’s where the ability to mount a folder as a drive becomes extremely useful. By doing this, you can make any folder behave like a separate drive with its own drive letter, even though it physically lives somewhere else on your disk.
If you’ve ever wished you could open a frequently used folder directly from This PC as if it were a local drive, you’ll be glad to know that Windows 11 supports this natively. In this in-depth guide, we’ll explain what mounting a folder as a drive means, why it’s useful, and how to do it using multiple reliable methods.
What Does “Mount a Folder as a Drive” Mean?
Mounting a folder as a drive means assigning a drive letter (like D:, E:, or Z:) to an existing folder. Once mounted:
- The folder appears as a normal drive in File Explorer
- Apps treat it like a real disk
- File paths become shorter and cleaner
- You don’t duplicate or move data
This is especially useful for:
- Large project folders
- Development environments
- Backup directories
- Virtual machines or game libraries
Why Mount a Folder as a Drive in Windows 11?
There are several practical reasons to do this:
- Quick access to deep folder paths
- Cleaner file paths for scripts and software
- Compatibility with apps that require drive letters
- Better organization without repartitioning disks
Most importantly, it’s safe and reversible.
1. Mount a Folder as a Drive Using Disk Management (Recommended)
Windows 11 includes built-in support for mounting folders as drives through Disk Management.
- Press Windows + X and select Disk Management.
- Locate the partition where your target folder exists.
- Right-click the partition and choose Change Drive Letter and Paths.
- Click Add.
- Select Mount in the following empty NTFS folder.
- Click Browse and choose an empty folder (or create a new one).
- Click OK → OK to confirm.
The folder is now mounted and behaves like a drive.
2. Mount a Folder as a Drive Using Command Prompt (SUBST Command)
If you want a quicker or temporary solution, the subst command works well.
- Press Windows + S, type Command Prompt.
- Right-click it and select Run as administrator.
- Run the following command:
subst X: "C:\Path\To\Your\Folder"(ReplaceX:with your desired drive letter.) - Press Enter.
The folder will immediately appear as a new drive.
3. Make the Mounted Folder Drive Permanent (Startup Script)
To keep a subst drive permanently:
- Open Notepad.
- Add the
substcommand:subst X: "C:\Path\To\Your\Folder" - Save the file with a
.batextension. - Press Windows + R, type
shell:startup, and press Enter. - Place the
.batfile in the Startup folder.
The folder will now mount as a drive every time Windows starts.
4. Mount a Folder as a Drive Using PowerShell
PowerShell provides more control and scripting flexibility.
- Right-click Start and select Terminal (Admin).
- Run:
New-PSDrive -Name X -PSProvider FileSystem -Root "C:\Path\To\Folder" -Persist - Press Enter.
The folder will now show up as a persistent drive in File Explorer.
5. Mount a Folder Using Symbolic Links (Advanced)
Symbolic links redirect paths rather than creating real drives.
- Open Command Prompt (Admin).
- Run:
mklink /D X:\ "C:\Path\To\Folder" - Press Enter.
This is best suited for advanced users and software redirection scenarios.
How to Remove or Unmount a Folder Drive
Depending on the method used:
- Disk Management: Remove the mounted folder path
- SUBST:
subst X: /d - PowerShell:
Remove-PSDrive X
The original folder and data remain untouched.
Wrapping Up
Mounting a folder as a drive in Windows 11 is a powerful yet underused feature that can dramatically improve file organization and workflow efficiency. Whether you use Disk Management for a clean, permanent setup or Command Prompt for quick access, Windows gives you multiple safe ways to achieve this without repartitioning or risking data loss.
If you regularly work with large folders, development environments, or applications that require drive letters, this feature can make your Windows experience significantly more streamlined and productive.