Hello
Firstly, I suggest that we could check if "Plug and Play" service has been started.
Type "services.msc" in Search box, then try to check "Plug and Play" service state.
Then you could try to update your hard drivers first and then see if the error persists. Follow the steps below to upgrade the hard disk drivers:
1.Find the “Device Manager” on the Start Menu and launch it.
2.To expand the “Disk Drives” section, double-click on it.
3.Right-click on the drive that has the mistake in this area.
4.Then choose “Update Driver.” and restart the machine.
Meanwhile, we could use command or modify registry to assign a drive letter.
To assign a drive letter using CMD, you can use the diskpart
command-line tool. Here are the steps:
- Open Command Prompt as an administrator.
- Type
diskpart
and press Enter to open the DiskPart utility.
- Type
list volume
and press Enter to display a list of all volumes on your computer.
- Identify the volume to which you want to assign a drive letter based on its size and file system.
- Type
select volume <volume number>
and press Enter, replacing <volume number>
with the number of the volume you want to assign a drive letter to.
- Type
assign letter=<drive letter>
and press Enter, replacing <drive letter>
with the desired drive letter (e.g., F, G, etc.).
- Type
exit
and press Enter to exit the DiskPart utility.
To assign a drive letter using the registry, you can modify the registry key for the desired drive. Here are the steps:
- Open Registry Editor by pressing Windows + R, typing
regedit
, and pressing Enter.
- Navigate to the following registry key:
HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
.
- Locate the entry that corresponds to the drive you want to assign a letter to. The entries are named with hexadecimal values.
- Right-click on the entry and select "Rename".
- Change the name of the entry to the desired drive letter followed by a colon (e.g.,
Z:
).
- Close Registry Editor.
Please note that modifying the registry can have serious consequences if done incorrectly. It is recommended to create a backup of your registry before making any changes.
Best Regards,
Hania Lian