> For the complete documentation index, see [llms.txt](https://docs.verge.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.verge.io/knowledge-base/de/virtual-machines/windows--slow-to-format-a-new-disk.md).

# Windows – Langsames Formatieren einer neuen Festplatte

Hosts mit Windows Server 2012 (und neuer) geben standardmäßig SCSI **TRIM** und **Unmap** Befehle aus, die der gesamten Größe der virtuellen Festplatte entsprechen. Dieses Verhalten ist auch dann dasselbe, wenn die Option „Schnellformatierung durchführen“ aktiviert ist, was den Formatierungsvorgang erheblich verlangsamt.

Es ist möglich, die **SCSI TRIM** und **Unmap** Funktion auf dem Host für die Dauer der Formatierung zu deaktivieren.

## So deaktivieren Sie TRIM und Unmap

Verwendung eines Windows **CMD** Fensters auf dem Host führen Sie den folgenden Befehl aus:

```doscon
fsutil behavior set DisableDeleteNotify 1
```

## So aktivieren Sie die Funktion erneut

Verwenden Sie den folgenden Befehl, um die **Trim und Unmap** Funktion erneut zu aktivieren:

```doscon
fsutil behavior set DisableDeleteNotify 0
```

## So überprüfen Sie die aktuelle Einstellung

Sie können die aktuelle **Trim und Unmap** Einstellung überprüfen, indem Sie den folgenden Befehl ausführen:

```doscon
fsutil behavior query DisableDeleteNotify
```

Die Ausgabe zeigt eines der folgenden Ergebnisse:

* **DisableDeleteNotify=0** - Die Funktion „Trim und Unmap“ ist **auf** (aktiviert).
* **DisableDeleteNotify=1** - Die Funktion „Trim und Unmap“ ist **aus** (deaktiviert).

{% hint style="info" %}
**Betroffene Versionen**

* Nur Hosts mit Windows Server 2012 und neuer sind betroffen. Alle früheren Versionen (z. B. Windows 2008) weisen nicht dasselbe Problem auf.
  {% endhint %}

{% hint style="info" %}
**Nicht-Server-Versionen**

* Nicht-Server-Versionen von Windows (z. B. Windows 8.x und 10.x) unterstützen den **DisableDeleteNotify** Parameter nicht.
  {% endhint %}

***

{% hint style="info" %}
**Dokumentinformationen**

* Zuletzt aktualisiert: 2024-08-29
* VergeOS-Version: 4.12.6
  {% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.verge.io/knowledge-base/de/virtual-machines/windows--slow-to-format-a-new-disk.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
