Rename a disk from CMD Line

  • Thread starter Thread starter Brendon Rogers
  • Start date Start date
B

Brendon Rogers

I need to rename the default name of the C: drive (local disk) to SYSTEM
using command line. I have looked at DISKPART.EXE and I don't think it will
do it. Any other suggestions?
 
label c: SYSTEM
will do it.

LABEL [drive:][label]
LABEL [/MP] [volume] [label]

drive: Specifies the drive letter of a drive.
label Specifies the label of the volume.
/MP Specifies that the volume should be treated as a
mount point or volume name.
volume Specifies the drive letter (followed by a colon),
mount point, or volume name. If volume name is specified,
the /MP flag is unnecessary.
 
Trust me to try and make it alot more comlicated than it needs to be.

Thanks you.
 
Back
Top