> 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/es/virtual-machines/windows--slow-to-format-a-new-disk.md).

# Windows: lento al formatear un disco nuevo

Los hosts de Windows Server 2012 (y posteriores) emitirán, de forma predeterminada, SCSI **TRIM** y **Unmap** comandos equivalentes al tamaño total del disco virtual. Este comportamiento es el mismo incluso si está marcada la opción "Realizar un formato rápido", lo que ralentiza significativamente el proceso de formateo.

Es posible deshabilitar la **función SCSI TRIM** y **Unmap** en el host durante la duración del formateo.

## Para deshabilitar TRIM y Unmap

Usando una ventana de Windows **CMD** en el host, ejecute el siguiente comando:

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

## Para volver a habilitar la función

Use el siguiente comando para volver a habilitar la **función Trim y Unmap** función:

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

## Para verificar la configuración actual

Puede verificar la **función Trim y Unmap** configuración actual ejecutando el siguiente comando:

```doscon
fsutil behavior query DisableDeleteNotify
```

La salida mostrará una de las siguientes opciones:

* **DisableDeleteNotify=0** - La función 'Trim y Unmap' está **en** (habilitada).
* **DisableDeleteNotify=1** - La función 'Trim y Unmap' está **desactivada** (deshabilitada).

{% hint style="info" %}
**Versiones afectadas**

* Solo se ven afectados los hosts de Windows Server 2012 y posteriores. Todas las versiones anteriores (por ejemplo, Windows 2008) no presentan el mismo problema.
  {% endhint %}

{% hint style="info" %}
**Versiones que no son de servidor**

* Las versiones de Windows que no son de servidor (por ejemplo, Windows 8.x y 10.x) no admiten el **DisableDeleteNotify** parámetro.
  {% endhint %}

***

{% hint style="info" %}
**Información del documento**

* Última actualización: 2024-08-29
* Versión de VergeOS: 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/es/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.
