Skip to content
Follow
Windows 🟡 Intermediate

How to Change Drive Letters in Windows 11

Richard
Written by
Richard
Jul 28, 2021 Updated Jul 22, 2026 6 min read
How to Change Drive Letters in Windows 11
How to Change Drive Letters in Windows 11

Changing drive letters in Windows 11 lets you reassign the labels assigned to your storage devices, like your C: drive or any extra hard drives.

Windows automatically assigns letters, such as C: for your main system drive, to your storage devices when you connect them.

You can change drive letters in Windows 11 if the default letters, like C: or D:, are not convenient for your organization. Assigning a specific letter to a new drive, such as D: or E:, helps you locate it more easily.

You can easily change these drive letters in Windows 11 using the Disk Management tool.

⚡ Quick Answer

Right-click the Start button, select Disk Management, then right-click the desired drive, choose “Change Drive Letter and Paths,” click “Change,” select a new letter, and click “OK.” Avoid changing the C: drive letter.

How to Change a Drive Letter in 🪟 Windows 11

We’ll go through a few methods, from using built-in tools like Disk Management or Settings, to using the command line if you prefer more control. Choose the method that works best for you!

Method 1Using Disk Management

This is a common way to change a drive letter. Disk Management is a Windows tool that helps you manage all your storage devices.

Open Disk Management

To open Disk Management quickly, press Windows key + X on your keyboard. Then, choose Disk Management from the list. You can also type "Disk Management" in the Windows search bar and select "Create and format hard disk partitions".

Find Your Drive

To change drive letters in Windows 11, you first need to find the specific drive you want to work with in the Disk Management tool.

💡Tip
Make sure you select the correct drive! Check the size and any names you've given your drives to be sure.

Change the Drive Letter

In PowerShell, you can change a drive letter using the 'Set-Partition' command, specifying both the current drive letter and the new drive letter you want to assign.

Change drive letter and paths window in Windows 11 Disk Management.
Change drive letter and paths window in Windows 11 Disk Management.

Assign a New Letter

Once you've located your drive in Disk Management, you can assign a new letter by clicking the 'Change...' or 'Add...' button and then selecting your preferred letter from the available options.

The Drive Letter Assignment window shows a list of options. Click the current drive letter to open the list of available letters. Select the new drive letter you want for this drive. Windows displays which drive letters are already in use, helping you pick a free one.

Confirm Your Choice

After selecting a new drive letter, click OK and then confirm your choice by clicking 'Yes' on the warning message to complete the drive letter change.

If you're sure, click Yes.

Assign the following drive letter dialog box in Windows 11.
Assign the following drive letter dialog box in Windows 11.

Changing the drive letter for your main Windows installation, typically drive C:, or any drive holding installed programs can cause problems. Such a change might stop your programs from working correctly. This advice applies to Windows 11 and earlier versions of Windows.

Done!

That’s it! The drive letter should now be updated. You can close Disk Management and check File Explorer to see your new drive letter.

Method 2Using 🪟 Windows 11 Settings

Windows 11 also lets you change drive letters right from the Settings app, which can feel more modern.

Open Settings

Press Windows key + I on your keyboard to open Settings. You can also click the Start button and choose the gear icon for Settings.

In the Settings window, click on "System" in the left menu, then click on "Storage" on the right side.

Access Advanced Storage Settings

For an alternative way to manage drive letters in Windows 11, access the 'Advanced storage settings' within the Settings app, then navigate to 'Disks & volumes'.

📝Note
Depending on your Windows 11 version, you might be asked by User Account Control (UAC) to confirm you want to proceed. Click Yes if you see this prompt.
windows 11 storage advanced storage settings storage spaces
windows 11 storage advanced storage settings storage spaces

Select Your Drive

You will see a list of all your disks and their volumes (sections). Find the volume for the drive whose letter you want to change and click on the volume's name.

Change the Drive Letter

The drive's properties page displays a "Change drive letter" button. Click this "Change drive letter" button to begin the process of assigning a new letter to your selected drive.

Changing drive letters via Windows 11 Settings menu interface.
Changing drive letters via Windows 11 Settings menu interface.

Assign a New Letter

Similar to Disk Management, a small window will pop up. Click the current drive letter in the list and choose the new letter you want to use from the available options.

Confirm and Finish

Click OK after choosing the new letter. You will get a warning message about possible issues with programs. If you are sure, click Yes to confirm.

You can now close the Settings window. Your drive letter should be updated.

Method 3Using the Command Prompt (diskpart)

If you're comfortable with the command line, diskpart is a powerful tool for managing disks and partitions, including changing drive letters.

Open Windows Terminal as Administrator

Press the Windows key + X and choose "Windows Terminal (Admin)". Administrator rights are required to make changes with diskpart.

Start diskpart

In the Windows Terminal window, type diskpart and press Enter. The prompt will change, indicating you are now in the diskpart tool.

List Volumes

The `list volume` command shows all drives and their partitions. Typing `list volume` and pressing Enter displays a list including the volume number, current drive letter, and size.

Tip: Carefully note the "Volume ###" number for the drive you want to change. For example, your D: drive might be Volume 2.

Select the Volume

Now, tell diskpart which volume to work with. Type select volume <volume number>, and replace <volume number> with the number you noted earlier. For example, if your drive was Volume 2, you would type select volume 2 and press Enter.

Assign the New Letter

Using Command Prompt, you can assign a new drive letter by typing the 'assign letter=' command followed by your desired letter (e.g., assign letter=F) and pressing Enter.

If the letter you chose is already being used, diskpart will give you an error. You'll need to go back to step 3, list the volumes again, pick a different available letter, and try step 5 again.

Exit diskpart

Once the letter is assigned correctly, you can type exit and press Enter to leave the diskpart tool. Then, you can close Windows Terminal.

Method 4Using PowerShell (Set-Partition)

For those who prefer PowerShell, there's a command to directly change a partition's drive letter. This is a more advanced method but can be very quick.

Open Windows Terminal (Admin)

Just like with diskpart, you need administrator rights. Press Windows key + X and choose "Windows Terminal (Admin)". Make sure to select "Windows PowerShell" from the dropdown if you have multiple options.

Identify the Current Drive Letter

Before you can change it, you need to know the current letter. Type Get-Partition and press Enter. Look through the list for the drive you want to change and note its current "DriveLetter".

Change the Drive Letter

Now, use the Set-Partition command. The format is like this:

PowerShell
Get-Partition -DriveLetter <current drive letter> | Set-Partition -NewDriveLetter <new drive letter>

You need to replace <current drive letter> with the letter the drive currently has (like D) and <new drive letter> with the letter you want to assign (like F).

For example, to change drive D to drive F, you would type:

PowerShell
Get-Partition -DriveLetter D | Set-Partition -NewDriveLetter F

Press Enter after typing the command.

Tip: If the new drive letter is already in use, PowerShell will show an error. You will need to try again with a different, available letter.

Close Windows Terminal

If the command runs without any errors, you can close Windows Terminal.

Summary

You can change drive letters in Windows 11 using easy graphical tools like Disk Management or the Settings app, or more advanced methods like Command Prompt and PowerShell, but always avoid changing your main Windows drive letter.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Change Drive Letter in Windows 11
Windows How to Change Drive Letter in Windows 11
How to Stream Google Drive to a Folder or Drive Letter in Windows 11
Windows How to Stream Google Drive to a Folder or Drive Letter in Windows 11
Change Windows 11 External Drive Removal Policy
Windows Change Windows 11 External Drive Removal Policy
How to Show or Hide Drive Letters in Windows 11 File Explorer
Windows How to Show or Hide Drive Letters in Windows 11 File Explorer

7 Comments

Leave a Comment

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