Solution: USB Memory stick not showing in File explorer

Problem

I have some USB Flash Memory drives that I had used on a non-Windows system (ie a TV) so it is using another file system than Windows’ NTFS, FAT or FAT32. When I insert them into my Windows 10 laptop they are connected, ie they are found by Windows and show up under “Safely Remove Hardware and Eject Media” and in the Device Manager. But they are not assigned a drive letter and do not show up as a drive in the File Explorer (aka My Computer in earlier Windows versions) or command prompt.

At first, I just thought that the USB Memory stick was not working but after having the same problem with several USB Memories I realized it probably had something to do with the format on them. I tried to download the HP USB Disk Storage Format Tool, but the USB drive did not show up there either.

So how can I reformat the USB memory stick if it does not show up in the Windows File Explorer?

Solution

I found a solution that works for me from Mosely5165.

WARNING: Make sure you know what you’re doing before trying this. If you select the wrong disk you may loose your data or entire system.

1. Open a Windows Command Prompt as Administrator

[code]cmd.exe[/code]

2. Run Diskpart

[code]diskpart.exe[/code]

This should launch Diskpart and give you the DISKPART> prompt.

3. List available disks

[code]list disk[/code]

4. From the list of disks select the one that is your USB drive, make sure to identify the right one.
WARNING: If you select the wrong disk you may loose your data or entire system

[code]select disk x[/code]

5. Create a primary partition

[code]create partition primary[/code]

If this gives you an error saying there is not enough space, give the Clean command, then try to create the partition again.

[code]clean
create partition primary[/code]

6. Give the following commands.

[code]
select partition 1
active
format fs=ntfs quick
assign
exit
[/code]

Full thread can be found at Tom’s Hardware here.

Leave a comment

Your email address will not be published. Required fields are marked *