diskpart删除windows隐藏分区
发表于 : 2016年 12月 5日 11:56 星期一
diskpart
select disk 0
list part
select part 3 /* or whatever is manufacturer's recovery partition
detail part
/* Now, observe partition type. If it is hidden, it will probably be 27.
/* Make a note of the partition type.
/* If it is 07, then this is normal NTFS partition.
/* If the partition type is something else but 07, then it is probably hidden.
/* If you wish to unhide the partition, set it's type to 07
set id=07
/* Now, assign a drive letter. If you don't specify a letter, the next available letter is used.
assign
/* Now you can exit diskpart
exit
select disk 0
list part
select part 3 /* or whatever is manufacturer's recovery partition
detail part
/* Now, observe partition type. If it is hidden, it will probably be 27.
/* Make a note of the partition type.
/* If it is 07, then this is normal NTFS partition.
/* If the partition type is something else but 07, then it is probably hidden.
/* If you wish to unhide the partition, set it's type to 07
set id=07
/* Now, assign a drive letter. If you don't specify a letter, the next available letter is used.
assign
/* Now you can exit diskpart
exit