由于错误,将驱动器号分配给可用空间失败


0

我最近安装了Windows 8,之后我删除了之前安装了Ubuntu的分区。为了获得可用空间,我在互联网上搜索了它,然后按照某处看到的步骤:

  1. 磁盘管理
  2. 选择了分区
  3. 右键单击 - >删除卷

enter image description here

所以做完这些步骤后, 它与其他逻辑驱动器自动扩展了200GB的可用空间

enter image description here

现在 我无法分配或使用此可用空间 ,并在我提供的图像中得到错误。

请帮我克服这个问题。

Answers:


3

通过这个。

右键单击E:驱动器,然后单击收缩卷缩小,然后给它一些名称。

使用diskpart打开命令提示符。

像这样输入以下命令:

DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          698 GB  2048 KB   *
  Disk 1    No Media           0 B      0 B

DISKPART> select disk 0

Disk 0 is now the selected disk.

DISKPART> LIST PARTITION

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary            350 MB  1024 KB
  Partition 2    Primary             97 GB   351 MB
  Partition 0    Extended           600 GB    97 GB
  Partition 3    Logical            184 GB   297 GB
  Partition 5    Logical             15 GB   482 GB
  Partition 4    Logical            200 GB   498 GB

DISKPART> select partition 5

Partition 5 is now the selected partition.

DISKPART> convert dynamic

DiskPart successfully converted the selected disk to dynamic format.

DISKPART> select disk 0

Disk 0 is now the selected disk.

DISKPART> convert dynamic

Selected disk is already a dynamic disk.

DISKPART> list volume

  Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
  Volume 0     G                       DVD-ROM         0 B  No Media
  Volume 1     F   Softwares &  NTFS   Simple       200 GB  Healthy
  Volume 2     H   New Volume   NTFS   Simple        15 GB  Healthy
  Volume 3     E   Entertainme  NTFS   Simple       184 GB  Healthy
  Volume 4     C                NTFS   Simple        97 GB  Healthy    Boot
  Volume 5         System Rese  NTFS   Simple       350 MB  Healthy    System
  Volume 6     D                       Removable       0 B  No Media

DISKPART> select volume 2

Volume 2 is the selected volume.

DISKPART> extend disk=0

DiskPart successfully extended the volume.

这里的分区5是来自E:drive的缩小量。


究竟!!解决了你的问题。
Roshan

1

这可能不是最佳解决方案,但它可以让您使用空间。

  1. 在可用空间上添加新分区。
  2. 创建新分区后,选择更改驱动器号,
  3. 选择添加,您可以使用新的驱动器号,或者将其安装在其他文件夹下,例如C:\ mount

我做了你说的步骤,但仍然得到同样的错误。
Roshan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.