Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

my partition disappeared 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 :: hardhat smart contract compile command 
Shell :: set kubernetes alias 
Shell :: list recently updated packages arch 
Shell :: uninstall google drive ubuntu 20.04 
Shell :: pom extract version linux 
Shell :: exit git log 
Shell :: git find files with conflicts, list files with conflict 
Shell :: install react-native cmd linux 
Shell :: how to uninstall atom in ubuntu 
Shell :: alpine install psql 
Shell :: install rvm ubuntu 20.04 
Shell :: install atom ubuntu 18 
Shell :: Got an error creating the test database: ERREUR: droit refusé pour créer une base de données 
Shell :: The current branch zuqing_feature2 has no upstream branch. 
Shell :: raspberrypi-ui-mods kept back 
Shell :: create new item from terminal 
Shell :: git host key verification failed 
Shell :: number fo files prestn in gcs bucket command 
Shell :: terminal how to find a directory 
Shell :: get username linux 
Shell :: sudo without password linux 
Shell :: wget ignore if exists 
Shell :: apt NO_PUBKEY 23E7166788B63E1E 
Shell :: github push master 
Shell :: How To Uninstall JDK From Linux 
Shell :: how to install apache server in ubuntu 
Shell :: sublime text ctrl + v is and c is not working 
Shell :: batch run command in new terminal window 
Shell :: reload vimrc without exiting 
Shell :: ubuntu mysql client cli 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =