如何使隐藏分区可见


12

这是我的硬盘分区的方式:

Recovery Partition 21 GB (primary partition)
C: 101 GB (Primary partition)
D: 141 GB (logical drive)
E: 141 GB (logical drive)
F: 190 GB (logical drive)
SYSTEM: 100 MB (primary partition)

恢复分区是空的,隐藏的,并且没有分配字母。我想用它来保存我当前Windows状态的图像。但是任何Windows软件都无法检测到。

另外,主分区和逻辑驱动器有什么区别?

Answers:


7
  • 右键单击“计算机”,单击“管理”(您需要管理权限!),然后在即将出现的窗口的右侧区域中选择“磁盘管理”。
  • 右键单击您的隐藏分区,然后单击“更改驱动器号和路径...”

    在此处输入图片说明

  • 单击“添加...”,选择一个驱动器号,然后在两个小窗口中单击“确定”。

    在此处输入图片说明


主分区是硬盘驱动器上的分区。您最多可以创建四个主分区。如果要创建四个以上的分区,则必须创建3个主分区和一个扩展分区,这是创建更多分区的一种解决方法。在扩展分区中创建的所有其他分区都称为逻辑驱动器。只能从主分区引导。
另请参阅:http : //windows.microsoft.com/en-us/windows-vista/What-are-partitions-and-logical-drives

编辑:好像Windows仅允许3个主分区。可能是这样,以防止用户创建4个主分区,因此他们不必删除一个分区即可创建扩展分区。Windows 7仅允许第四个分区成为扩展分区。


GUI工具中内置的限制是“仅3个主要分区”。您可以使用diskpart命令行工具在MBR磁盘上创建第四个主分区-正常工作。
Paul Groke 2015年

请注意,如果您的系统具有UEFI,则应该使用GPT而不是MBR,那么您可以根据需要拥有任意数量的分区,而无需扩展分区hack有关更多信息,请参见此处
mTorres 2015年

如果右键单击(按照步骤1)“管理”选项不可用,则可以转到Start > Run 并键入diskmgmt.msc
roblogic

1

当您的系统中隐藏了一些分区时,这是因为它们对它们应用了标记“ hidden”。

我使用一个免费的应用程序来操纵所有可用的标志和其他磁盘操作:

MiniTool分区向导家庭版7.5

  1. 在列表上,右键单击所需的分区;
  2. 访问“修改”;
  3. 点击“取消隐藏分区”;
  4. 在工具栏的最左侧,按“应用”将设置保存到磁盘;

更改隐藏标志

完成后,您可能需要重新启动PC才能有显示新分区的窗口。




0

或diskpart

Microsoft DiskPart version 6.1.7601
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: HOSTNAME

DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          465 GB      0 B

DISKPART> sel disk 0

Disk 0 is now the selected disk.

DISKPART> list part

  Partition ###  Type              Size     Offset
  -------------  ----------------  -------  -------
  Partition 1    Primary             39 MB    31 KB
  Partition 2    Primary             10 GB    40 MB
  Partition 3    Primary            455 GB    10 GB

DISKPART> sel part 1

Partition 1 is now the selected partition.

DISKPART> det part

Partition 1
Type  : 17
Hidden: Yes
Active: No
Offset in Bytes: 32256

There is no volume associated with this partition.

DISKPART> sel part 2

Partition 2 is now the selected partition.

DISKPART> det part

Partition 2
Type  : 17
Hidden: Yes
Active: Yes
Offset in Bytes: 41943040

There is no volume associated with this partition.

DISKPART> sel part 3

Partition 3 is now the selected partition.

DISKPART> det part

Partition 3
Type  : 07
Hidden: No
Active: No
Offset in Bytes: 11096031232

  Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
  ----------  ---  -----------  -----  ----------  -------  ---------  --------
* Volume 1     C   OS           NTFS   Partition    455 GB  Healthy    Boot

DISKPART> sel part 2

Partition 2 is now the selected partition.

DISKPART> set id=07

DiskPart successfully set the partition ID.

DISKPART> assign letter=z:

DiskPart successfully assigned the drive letter or mount point.

并撤消它

DISKPART>设置ID = 17覆盖


你能解释一下你在做什么吗?
斯科特,

井17是Windows标识为隐藏的分区类型。07被标识为主。在此处可以找到更多信息:win.tue.nl/~aeb/partitions/partition_types-1.html
Ahze85283 '17
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.