KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

EN PT-BR ES

Problemas Conocidos Recientes

Actualizaciones de Windows con problemas documentados

KB5124012
Important ⚠️ Issues

September 8, 2026-KB5124012 (OS Build 28000.2954) | Microsoft Support

Known issue status retained from previous database evidence. Detailed issue extraction was inconclusive in this run. Ev...

KB5124008
Important ⚠️ Issues

September 8, 2026—KB5124008 (OS Builds 26200.9445 and 26100.9445) | Microsoft ...

Known issue status retained from previous database evidence. Detailed issue extraction was inconclusive in this run. Ev...

KB5122880
Important ⚠️ Issues

September 8, 2026—KB5122880 (OS Build 22621.7582) | Microsoft Support

Known issue status retained from previous database evidence. Detailed issue extraction was inconclusive in this run. Ev...

KB5121000
Important ⚠️ Issues

August 11, 2026—KB5121000 (OS Build 28000.2704) | Microsoft Support

Known issue status retained from previous database evidence. Detailed issue extraction was inconclusive in this run. Ev...

KB5095051
Important ⚠️ Issues

June 9, 2026—KB5095051 (OS Build 28000.2269) | Microsoft Support

Known issue status retained from previous database evidence. Detailed issue extraction was inconclusive in this run. Ev...

KB5124012
Important ⚠️ Issues

September 8, 2026-KB5124012 (OS Build 28000.2954) | Microsoft Support

[Security] After installing the September 8, 2026, Windows security update KB5124012, or later updates, some Credential ...

KB5124008
Important ⚠️ Issues

September 8, 2026—KB5124008 (OS Builds 26200.9445 and 26100.9445) | Microsoft ...

[N/A] After installing the September 8, 2026, Windows security update (KB5124008), or later updates, some Credential Gua...

KB5122878
Important ⚠️ Issues

September 8, 2026—KB5122878 (OS Builds 19045.7725 and 19044.7725) | Microsoft ...

[N/A] Remote Desktop Services might stop responding after installing the September 2026 Windows security update. Some or...

KB5122876
Important ⚠️ Issues

September 8, 2026—KB5122876 (OS Build 17763.9245) | Microsoft Support

[Security] After installing the September 2026 Windows security update, some organizations might experience issues with ...

KB5123099
Important ⚠️ Issues

September 8, 2026—KB5123099 (OS Build 14393.9512) | Microsoft Support

[Security] Remote Desktop Services might stop responding after the September 2026 security update. Some organizations mi...

Ver Todos los Resultados

Sobre el Sistema

Este sistema fue desarrollado para ayudar a las empresas en la aprobación y prueba de actualizaciones de Windows (KBs - Knowledge Base). Automatiza la verificación de artículos del catálogo de Microsoft para identificar posibles problemas conocidos.

Los problemas conocidos se documentan con frecuencia en artículos de Microsoft, junto con soluciones o estrategias de mitigación para administradores de TI. Al marcar rápidamente KBs con problemas conocidos, el sistema ayuda a tomar decisiones informadas.

¡Ayuda a mejorar este sistema! Tu donación apoya la innovación y la seguridad digital. Donar Ahora

Servicios Disponibles

Obtener KBs Instalados en tu PC

Cómo Obtener KBs Instalados:

  1. Presiona Win + R para abrir "Ejecutar".
  2. Escribe cmd y presiona Enter para abrir el Símbolo del sistema.
  3. En la consola, escribe el comando y presiona Enter:
  4. Se mostrará la lista de KBs (hotfixes) instalados.
  5. wmic qfe get hotfixid

Code samples

PowerShell

$token  = "TOKEN_ID.SECRET"
$apiUrl = "https://kbaps.com//api/kb/api.php"

$kbs  = Get-HotFix | ForEach-Object { $_.HotFixID }
$body = @{ kb_list = ($kbs -join ",") } | ConvertTo-Json -Compress

$headers = @{
  "Authorization" = "Bearer $token"
  "Content-Type"  = "application/json"
}

$response = Invoke-RestMethod -Uri $apiUrl -Method POST -Headers $headers -Body $body
$response | ConvertTo-Json -Depth 5

Help improve the system that simplifies Windows updates for businesses! Your donation supports innovation. [Donate Now]