# 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>" %}

![](https://3420392058-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LpnxLqvh8u2fEz86kIM%2F-LqgeXR20Y-VkmoOFjzT%2F-LqggBxB8L265aXSswJE%2Fimage.png?alt=media\&token=75f2f0e4-a047-4a43-a5c3-cee581894df0)

![](https://3420392058-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LpnxLqvh8u2fEz86kIM%2F-LqgeXR20Y-VkmoOFjzT%2F-LqggqmQ5GafMp6i9wSp%2Fimage.png?alt=media\&token=4c4f2b6e-f294-444b-86a4-efdbd70159e0)

## 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>" %}

![](https://3420392058-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LpnxLqvh8u2fEz86kIM%2F-LqgeXR20Y-VkmoOFjzT%2F-LqghWnd5o-KHi10uAEO%2Fimage.png?alt=media\&token=a0a0dbf9-5217-4a5b-be9a-b13faf521e70)

## 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
```

![](https://3420392058-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LpnxLqvh8u2fEz86kIM%2F-Lqt0ULr7MYaQq4G9geE%2F-Lqt3W7uH8Tjou6KJ0n1%2Fimage.png?alt=media\&token=27778e29-f881-4670-a44a-0301b466a3b0)
