[SOLVED] GPT SSD won't convert to MBR

Apr 15, 2020
1
0
10
Hi
I have 60GB SSD drive. It’s been partitioned as GPT with 3 different partitions as you know.
I tried to convert it to MBR as follow:
1- open cmd> disk part> select disk> clean>exit.
2- go to disk management (in this step, ssd drive has only one partition) and initialize disk, check MBR section and OK.
3-After that, it turned to GPT with 3 partitions again (like a loop).
Any solution?
Or I should take it to the guarantee service?
 
Solution
You can do it with diskpart commands.
diskpart
list disk
select disk n (the desired target n from the list)
clean
convert mbr

You can then use disk management or continue with diskpart

create part primary
format fs=<ntfs|fat|fat32>] [label=<label>] [unit=<n>] [quick] -- leaving out the [] and filling in the <choice> without the <>

and if it to be the OS disk you can use an active command to mark it as such, or just install the OS to the unallocated converted disk.
You can do it with diskpart commands.
diskpart
list disk
select disk n (the desired target n from the list)
clean
convert mbr

You can then use disk management or continue with diskpart

create part primary
format fs=<ntfs|fat|fat32>] [label=<label>] [unit=<n>] [quick] -- leaving out the [] and filling in the <choice> without the <>

and if it to be the OS disk you can use an active command to mark it as such, or just install the OS to the unallocated converted disk.
 
Solution