Windows To Go U disk does not have a drive letter

  
Many people have tried Windows To Go and found that no matter how the U disk is formatted, the U disk cannot be automatically assigned a drive letter after being inserted into the computer. This is because when you create a Windows To Go USB drive with a wizard, Windows sets the disk with the NODEFAULTDRIVELETTER flag. Therefore, when the disk drive is inserted at any time in the future, Windows does not assign a drive letter to the disk.


This mechanism should be easy to understand, because, as a Windows To Go drive, it is equivalent to a C partition on a normal PC, which mainly stores the system, people generally do not pass the resource manager. Visit the partition frequently (if your data is mostly placed in other partitions). For a drive, the purpose of assigning a drive letter is to facilitate daily access. For such infrequently accessed drives, even if someone else plugs your Windows To Go U disk into their computer, it is reasonable to not assign a drive letter to it, and this is taken into account when designing.


Formatting does not clear the flags in some of the properties of the disk, so a formatted Windows To Go USB drive cannot be automatically assigned a drive letter. How to solve this?

We have to use the built-in Diskpart command line tool to reset the disk:

1. Open the cmd command prompt window (run as administrator);

2. Execute diskpart, and list disk, find the number of your USB flash drive (1 in this example), and then select the disk by select disk 1;

3. Execute the clean command to clear all data on the disk, Format and post-initialization information (this is the step to clear the NODEFAULTDRIVELETTER flag);


4. Next you have to create a disk partition to format Windows. For U disk, we default to a partition, so execute create partition primary.

5. To use the disk, you have to format it. However, if you are fed up with the command line, you can finally go to the resource manager to format it~ If you still like the command line, then we can continue to execute format fs=fat32 quick.

Execute exit twice and exit the diskpart tool and cmd. Now the U disk is back to normal, and the computer will get an automatically assigned drive letter.

Copyright © Windows knowledge All Rights Reserved