aforpedia
Non connecté
☰ Menu
Détails des Données
Eject an external USB hard drive via the command line
diskpart
list disk:
select disk X
offline disk
exit
This ensures the drive is safely unmounted.
Pour reformatter un disque dur:
diskpart
list disk
select disk 0
clean
: remove partitions
convert mbr
: only if required i.e problem installing the OS (convert GPT Disk to MBR Disk)
create partition primary
active
list volume
select volume 1
assign letter=C
exit
then
format c:
To identify the drives
diskpart
list volume
exit
keywords: partition disque bios eject ejecter unmount
ID 2
Retour