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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://osd.osdeploy.com/docs/trash/disk/new-osdisk/old-version/partition-layout.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
