# Deshabilitar Windows Update

Esta guía explica cómo deshabilitar Windows Update en un sistema Windows Server 2022. Deshabilitar las actualizaciones puede ser útil en situaciones donde las actualizaciones automáticas pueden interferir con flujos de trabajo específicos o requieren control manual. Siga estos pasos cuidadosamente.

Paso 1: Abra PowerShell

1. Presione Win + S para abrir la barra de búsqueda.
2. Tipo PowerShell.
3. Haga clic con el botón derecho en Windows PowerShell y seleccione Ejecutar como administrador.

#### Paso 2: Deshabilitar el servicio de actualización de Windows <a href="#step-2-disable-the-windows-update-service" id="step-2-disable-the-windows-update-service"></a>

1\. En la ventana de PowerShell, ejecute el siguiente comando para detener y deshabilitar el servicio Windows Update:

Set-Service -Name wuauserv -StartupType Deshabilitado -Estado Detenido

Copiar

```
Set-Service -Name wuauserv -StartupType Disabled -Status Stopped
```

• Set-Service: Modifica la configuración de un servicio.

• -Nombre wuauserv: especifica el servicio de actualización de Windows.

• -StartupType Disabled: establece el servicio para que no se inicie automáticamente.

•-Estado Detenido: Detiene inmediatamente el servicio.

#### Paso 3: Verificar el estado del servicio <a href="#step-3-verify-the-service-status" id="step-3-verify-the-service-status"></a>

Para confirmar que el servicio Windows Update se ha deshabilitado correctamente, utilice el siguiente comando:

Copiar

```
Get-Service -Name wuauserv
```

La salida debe indicar:

• Estado: Detenido

• Tipo de inicio: Deshabilitado

#### Paso 4: Opcional: vuelva a habilitar Windows Update <a href="#step-4-optional-re-enable-windows-update" id="step-4-optional-re-enable-windows-update"></a>

Si alguna vez necesita volver a habilitar Windows Update, puede hacerlo ejecutando el siguiente comando en PowerShell:

Copiar

```
Set-Service -Name wuauserv -StartupType Manual -Status Running
```

#### <kbd>**Notas importantes**</kbd> <a href="#important-notes" id="important-notes"></a>

{% hint style="warning" %}

1. Deshabilitar Windows Update puede dejar su servidor vulnerable a riesgos de seguridad debido a software sin parchear. Use esta opción solo cuando sea necesario y asegúrese de que las actualizaciones se administren manualmente<br>
2. Asegúrese de documentar cualquier cambio en las configuraciones del servidor para referencia futura.
   {% endhint %}

Con esto finaliza la guía para deshabilitar Windows Update en Windows Server 2022. Si tiene alguna pregunta o necesita más ayuda, comuníquese con el administrador del sistema o el equipo de soporte de TI.


---

# 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://docs.hero-hostings.net/preguntas-tecnicas-generales/windows/deshabilitar-windows-update.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.
