我运行的是Windows10系统,每当我在cmd上调用dir
时,都会收到这样的消息:
Volume in drive C has no label.
Volume serial number: 5A4F-9364
德语原文:
Volume in Laufwerk C: hat keine Bezeichnung.
Volumeseriennummer: 5A4F-9364
它意味着什么?我如何修复它?
发布于 2020-02-27 05:58:30
就像它说的:你的C:
驱动器没有标签,也没有名字。您可以使用label
命令指定一个值:
Creates, changes, or deletes the volume label of a disk.
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.
或在驱动器的属性面板中执行以下操作:
回到过去,我们常常给软盘起一个名字。硬盘驱动器也可以有一个,但大多数时候没有人关心。资源管理器显示诸如“本地磁盘(C:)”之类的驱动器,而dir
则显示更可怕的消息。
https://stackoverflow.com/questions/60422938
复制相似问题