> For the complete documentation index, see [llms.txt](https://osd.osdeploy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osd.osdeploy.com/docs/trash/disk/new-osdisk/old-version/partition-layout.md).

# Partition Layout

If you were looking for some control in the Partition Layout, the only thing that **`New-OSDDisk`** can do is to give you the option to not create the Recovery Partition.  Take the opportunity to see Microsoft's guidance below

## BIOS MBR Partition Layout

New-OSDDisk follows the Microsoft recommendation for Partition Layout&#x20;

```
SYSTEM | WINDOWS | RECOVERY
```

{% embed url="<https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/configure-biosmbr-based-hard-drive-partitions>" %}

![](/files/-LqggBxB8L265aXSswJE)

![](/files/-LqggqmQ5GafMp6i9wSp)

## UEFI GPT Partition Layout

UEFI GPT is similar to BIOS MBR, although you need to add the MSR partition, so:

```
SYSTEM | MSR | WINDOWS | RECOVERY
```

{% embed url="<https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/configure-uefigpt-based-hard-drive-partitions>" %}

![](/files/-LqghWnd5o-KHi10uAEO)

## SkipRecoveryPartition

```
#Skips the creation of the Recovery Partition
[switch]$SkipRecoveryPartition
```

The only thing you can do is skip the creation of the Recovery partition, which is easier to notice in a comparison

```
New-OSDDisk -SkipRecoveryPartition
```

![](/files/-Lqt3W7uH8Tjou6KJ0n1)
