Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

loss of driver letter windows 10

# if the partition missing could be for loss of drive letter do the
# steps below to assign a letter to the missing partition and
# the drive 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 :: mac delete node_modules 
Shell :: merge changes into previous commit 
Shell :: k8s get current context 
Shell :: cpanel webdav windows 
Shell :: shrink terminal current directory 
Shell :: add docker to group 
Shell :: how to push code to gitlab 
Shell :: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory" 
Shell :: how to download playonlinux 
Shell :: portainer templates 
Shell :: conda install pyvista 
Shell :: cassandra get table size 
Shell :: how to find current active yarn resource manager 
Shell :: truffle hd 
Shell :: arhlinux python.h 
Shell :: rename lxc name on ubuntu 
Shell :: how to generate master.key rails 
Shell :: install gnu grep on mac 
Shell :: fatal: the remote end hung up unexpectedly 
Shell :: command to check size of folder in linux 
Shell :: install angular in ubuntu 
Shell :: installing eth-brownie 2022 
Shell :: linux save http content to file 
Shell :: Missing script: "dev" 
Shell :: sudo command in windows 
Shell :: used port linux 
Shell :: install httpie linux 
Shell :: hide top bar ubuntu 20.04 
Shell :: zsh profile 
Shell :: mysql inline password command line 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =