Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How do I get my drive letters back?

# If your drive or partition is missing and you don't have access to it
# do the steps below to assign a letter to the missing partition and
# the drive or partition will be back without any issue or data loss.

# Type the steps one by one in command prompt and hit enter
# You shouldn't type the lines that begin with #
--------------
# oepn diskpart
diskpart
--------------
# list the partitions on the selected disk
list volume

# now this part is important. Now DISKPART is showing you a list of all
# volumes on your computer. look at the "Ltr" column and see if all of the
# volumes have a letter( like E,F,G,...). if there is a volume that doesn't
# have a letter (if the Ltr cell is empty) that volume might be the parition
# that has disappeared from your computer so we'll assign a letter to it.
--------------
# lets say for example volume 0 doesn't have a letter. first we select it:
select volume 0
--------------
# and finally assign the letter you want to it
assign letter=D
--------------
# Done, now exit.
exit
--------------
# Now look in your file explorer to see if the disapeared partition is back
Comment

PREVIOUS NEXT
Code Example
Shell :: how to check the version of vue-router you are using with yarn 
Shell :: microsoft teams reopen main window 
Shell :: print parte da tela ubuntu 
Shell :: ll command not found 
Shell :: run sudo command with password in one line 
Shell :: gitignore visual studio not working android 
Shell :: batch run command in new terminal window 
Shell :: echo /etc/hosts permission denied 
Shell :: check running process in linux 
Shell :: github quick setup page 
Shell :: openssl generate certificate 
Shell :: install avro on linux ubuntu 
Shell :: linux check user group list 
Shell :: bash randomly shuffle all rows of a file 
Shell :: ubuntu 20.04 install google cloud sdk 
Shell :: apply gitignore to current commit 
Shell :: install tor browser on kali linux 
Shell :: ubuntu check whats taking space 
Shell :: firebase deploy only hosting command 
Shell :: install jq in windows 
Shell :: ubuntu install jq 
Shell :: debian kill open port 
Shell :: shell shortcuts 
Shell :: bash script write linux 
Shell :: how to remove a file inside jar file in linux 
Shell :: pacman 404 
Shell :: git shortcut 
Shell :: linux list application installation 
Shell :: f.lux for ubuntu 18.04 
Shell :: install miniconda on mac 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =