Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Partition information from CMD [closed]

Is there any CMD command line that shows all partition letters. For example: C, D, E...

Can that command also show all the partition's information? Free space, used space, total space?

like image 605
gedO Avatar asked Mar 15 '10 09:03

gedO


1 Answers

You can use diskpart

c:\>diskpart

Microsoft DiskPart versión 6.1.7600
Copyright (C) 1999-2008 Microsoft Corporation.
En el equipo: DV6470

DISKPART> list volume

  Núm Volumen Ltr  Etiqueta     Fs     Tipo        Tamaño   Estado     Info
  ----------- ---  -----------  -----  ----------  -------  ---------  --------
  Volumen 0     D                      DVD-ROM         0 B  Sin medio
  Volumen 1         Reservado   NTFS   Partición    100 MB  Correcto   Sistema
  Volumen 2     C   C           NTFS   Partición     38 GB  Correcto   Arranque

It accepts a script as command line parameter:

listvol.cmd:

echo list volume > listvol.scr
diskpart /s listvol.scr
del listvol.scr
like image 181
Carlos Gutiérrez Avatar answered Oct 19 '22 13:10

Carlos Gutiérrez