Windows 10: Turning a folder into a drive letter

Discus and support Turning a folder into a drive letter in Windows 10 Software and Apps to solve the problem; Hi there,I would like to map a folder to a drive letter. I used to do this on Windows 7 using junctions and symbolic links using utilities from System... Discussion in 'Windows 10 Software and Apps' started by Sam_9S, Sep 3, 2022.

  1. Sam_9S Win User

    Turning a folder into a drive letter


    Hi there,I would like to map a folder to a drive letter. I used to do this on Windows 7 using junctions and symbolic links using utilities from System Internals from Microsoft but it doesn't seem to be working on Windows 10. Using the subst command is a half-measure and I'd rather not use it. It's a pain for many reasons I'd rather not get into.How can I basically mount a folder as a drive?I ask because over the years, I have moved old drives onto new drives as folders, and maintain file paths used by programs by remapping the folder containing the original drive's contents as the original dri

    :)
     
    Sam_9S, Sep 3, 2022
    #1
  2. JediNemo Win User

    User Folder Relocation - drive letter changed / can't log in

    Not sure if this is the best thread to post this in.

    Here's the scenario.
    You use the (amazing) folder relocation tutorial in this forum. The process succeeds and you have a wonderful stress free year in Windows 10. Then your motherboard fails and you replace it with a different brand. Suddenly, when you get booted back to Windows, you can't log in! You quickly realize it's because you set your 2nd hard drive to drive letter "D:", but when Windows reloaded the disk drives because of the hardware change, it assigned "D:" to the DVD drive, and now you are stuck!

    Fear not fellow tweakers, I put in the research and have the solution (this may be redundant from another post, tried to search originally but didn't find anything, so my apologies if duplicating).

    Quick detail: First, we are going to boot into the recovery console and use the command prompt. In the recovery console, please be aware that it uses a virtual drive "X:" as the OS drive. Your other drive letters will be changed. Then we will identify which drive letter your OS is installed on. Next we will find which drive letter your user profiles are loaded on. Then we will make registry edits to fix the drive letter changes. Finally a reboot and celebratory dance.

    Note: You will need an understanding of command line operations and registry editing. If you do not, please find that information first, I will assume you have this knowledge moving forward.
    Also, there are no screen shots. I'm sorry, I didn't think I would be posting this while I went through the process, therefore I have no screen shots to share. If anyone has to go through this, it would be great if you could share your experience and provide screenshots if available.

    ***THIS INVOLVES REGISTRY EDITING. PROCEED AT YOUR OWN RISK. I AM NOT A REGISTRY EXPERT AND CAN NOT TROUBLESHOOT MISSED STEPS OR ERRORS.***

    Step 1: Boot into the Recovery Console and select the Command Prompt option.
    * If you don't know how, basic tutorial: Interrupt the boot cycle 3 times to activate the recovery consol. As the system boots, when you see the windows logo, simply do a hard reset. After 3 times, when the windows logo appears, it will say it is starting "Automatic Recovery". Once that is done, log in with the local admin account and it will (at least for me) automatically open a command prompt.
    * This can also be accomplished a number of other ways including the use of recovery drives, install media, etc.

    Step 2: If you are confident on which drive is likely which, you can skip to step 3. If not, you need to determine which drive is which in the registry. To do this you have to use a variety of steps.
    1. Find the original OS drive. In the command prompt, type the following command:
      bcdedit | find "osdevice"
      The command will return osdecice partition=*: where "*" will be the current drive letter.
    2. Now you need to find the drive that has the user profiles folder assigned, from your folder relocation. There are a few ways to do this, I will list one. Type "regedit" in the command prompt to open the registry editor.
    3. In the registry editor, navigate to HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
    4. In this part of the registry you will see all the drive letters assigned to various volumes. From step 2a, you'll know which volume would be your normal "C:" drive. Write down the hex code associated with that drive letter. Next, you need to determine which drive letters represent volumes on physically mounted drives, and which represent removable media. Not getting too technical, basically you just look for all the volumes that have a hex code length equal to that of the OS drive.
      1. For example, if in step 2a you discovered that your OS drive is assigned the letter "W:", then look at the entry with that drive letter assigned. The number of hex entries represents a volume on a physically connected drive. Find all the other drive letters that have an equal number of hex entries. Those are all volumes on physically connected drives.
    5. Explore each of those drive letters to find the one with the user profile folder.
    6. Do this by typing "dir *:" in the command prompt, where "*" equals the drive letter.
    7. Go back to the registry editor (regedit). Find the "DosDrive" key entry with same drive letter as in step 2e. Write down the hex code for that key entry.


    Step 3: Before we can make the necessary registry changes, you need to connect to a different registry, called a "Hive".
    1. This link has a more expanded explanation of what we are about to do.
    2. In the key folder pane (left pane) of the Registry Editor window, highlight the "HKEY_LOCAL_MACHINE" option.
    3. Next, click on "File" and chose the option for "Load Hive"
    4. You'll have a familiar "open" window, navigate to the os drive found in step 2a.
    5. Navigate to the windows\system32\config folder
    6. Select the "SYSTEM" file option, and click "OPEN"
    7. It will ask for a key name. This is a temporary name and thus doesn't need anything official. Make it easy to remember. I used: "Drive Letter Change". Then click "OK"
    8. Now you will see an option under HKEY_LOCAL_MACHINE for "Drive Letter Change" (or whatever you named it in the previous step.
    9. Open that new folder and navigate down to
      HKEY_LOCAL_MACHINE\Drive Letter Change\MountedDevices
    10. This will look similar to what you found in step 2d, with the notable difference being this is what Windows will look like when not in recovery!


    Step 4: Make the registry changes
    1. Delete every registry entry that either starts with \\??\ OR has a hex code LONGER than the physical drives (Step 2d).
    2. You should be left with \DosDevices\ keys with equal length hex codes.
    3. Find the key with the hex code that matches with the OS drive you wrote down in step 2d. Make sure it is assigned the drive letter "C:"
      1. There should be no change in this
    4. Find the key with a hex code that matches your user folder drive, you wrote this down in step 2f.
    5. Right click that key name and chose the option for "Rename"
    6. Change the drive letter to whichever drive letter is needed for your particular setup.
      1. When I did my folder relocation initially, I had set my user folders to be found on the D drive. So on this step I renamed the key from "\DosDevice\E:" to "\DosDevice\D:"
    7. Confirm there are no duplicate or conflicting key entries: each drive letter will be used only once.
    8. *NOTE* For THIS particular set of keys (MountedDevices), you can safely delete everything thing. Windows will re-initialize these values at boot if it detects drives that are unaccounted for. So, if you delete everything besides the C drive and your user profile drive, that is OK! Windows will reconstruct the missing keys for you. Once you can log in, you can use Device Manager to change drive letters at will. This IS NOT TRUE for all registry items.

    Step 5: Close the registry editor

    Step 6: Type "exit" at the command prompt

    Step 7: Click on the button for "Turn off PC"

    Step 8: Count to 10, take a deep breath, and turn the computer back on

    Step 9: Log into windows

    Step 10: Assuming Step 9 worked, celebrate in your preferred method. If step 9 didn't work, double check you followed my instructions. If not, shut it all down and go to the beach!
     
    JediNemo, Sep 3, 2022
    #2
  3. Lazzer408 Win User
    help. USB drive isn't assigned a drive letter.

    Any usb flash drive I plug into my computer isn't assigned a drive letter. The physical drive shows in the "safely remove hardware" but it doesnt show up in disk management. I have tried to populate the volume thru the safely remove hardware properties window and it does pop up in the list but it doesn't stay there. This isn't a format or assign a letter problem. It's more complicated then that. Maybe one of the services needed for usb drive management was disabled? Suggestions needed. btw external usb harddrives work fine.
     
    Lazzer408, Sep 3, 2022
    #3
  4. Arun B J Win User

    Turning a folder into a drive letter

    Problem with letter drives confusing Sony Vegas

    Hi,



    Thank you for posting your query in Microsoft Community.



    I understand your concern and will assist you to resolve this issue.

    I suggest you to follow the steps below and check if it helps.

    • Open Disk Management (press [Win] +[R], type "diskmgmt.msc", and press [Enter]).
    • In the lower pane, right-click on the partition that you want to change drive letter, and click "Change Drive Letter and Paths"
    • A dialog should come up, showing the partition's current drive letter. Even if it is correct, click [Change].
    • From the dropdown, select any new letter, and then [OK] your way back to Disk Management. And check if it helps.


    Hope this information is helpful. Do let us know if you need any further assistance, we'll be glad to assist you.
     
    Arun B J, Sep 3, 2022
    #4
Thema:

Turning a folder into a drive letter

Loading...
  1. Turning a folder into a drive letter - Similar Threads - Turning folder drive

  2. Unmap or Disconnect Mapped Drive letter to a Local Folder

    in Windows 10 Gaming
    Unmap or Disconnect Mapped Drive letter to a Local Folder: I have mapped Drive letter J: to a Local folder on my computer C:\Users\username\My Drive. I had to reset Windows 11 and may need to re link the J: to a new location. How do I unlink the mapped drive letter J: from this local folder so that it can be available again to map to...
  3. Letters are turning into numbers

    in Windows 10 Drivers and Hardware
    Letters are turning into numbers: Hiya everyone!I have a laptop which me and my sister are using and the k button is turning into a 2! Same with o being 6. Can anyone tell me what’s going wrong with it?Thanks :...
  4. Turning a folder into a drive letter

    in Windows 10 Network and Sharing
    Turning a folder into a drive letter: Hi there,I would like to map a folder to a drive letter. I used to do this on Windows 7 using junctions and symbolic links using utilities from System Internals from Microsoft but it doesn't seem to be working on Windows 10. Using the subst command is a half-measure and I'd...
  5. Turning a folder into a drive letter

    in Windows 10 Gaming
    Turning a folder into a drive letter: Hi there,I would like to map a folder to a drive letter. I used to do this on Windows 7 using junctions and symbolic links using utilities from System Internals from Microsoft but it doesn't seem to be working on Windows 10. Using the subst command is a half-measure and I'd...
  6. Drive Letters

    in Windows 10 Customization
    Drive Letters: I want to change the drive letters ... How do you do that? thanks https://answers.microsoft.com/en-us/windows/forum/all/drive-letters/c20d65a1-bc5b-48e3-8183-51a96d3c09fd
  7. Drive Letters

    in Windows 10 Customization
    Drive Letters: How do you add or change the flash drive letters? Thanks https://answers.microsoft.com/en-us/windows/forum/all/drive-letters/2bd3eb65-decb-4598-ade6-c73118a79b0a
  8. Drive letters for shared folders and USBs

    in Windows 10 Network and Sharing
    Drive letters for shared folders and USBs: I have two PCs at home and both of them have 2 hard drives partitions. So, what I want is to share the second storage partition between them. I managed to do that and it works just fine, I assign the shared partition new drive letter on other PC so it appears just like...
  9. Drive Letter

    in Windows 10 Drivers and Hardware
    Drive Letter: I have automatic updates for windows 10. I have a separate drive normally connected to one of my windows devices. For many years this drive now identifies 100's of folders and many more files. When first installed it was allocated letter 'F' which since my latest update has...
  10. Drive Letters

    in Windows 10 Drivers and Hardware
    Drive Letters: When I plug a USB stick in any USB port the laptop allocates the next available letter to this drive - "E" - this applies to any USB stick I normally use. EXCEPT for one particular USB stcik which always shows up as "G" even though "E" and "F" are available. What's...