KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

EN PT-BR ES

Problemas Conhecidos Recentes

Atualizações do Windows com 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 ...

[Security] Domain-joined devices might lose their secure trust relationship with the domain. After installing the update...

KB5122878
Important ⚠️ Issues

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

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

KB5122876
Important ⚠️ Issues

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

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

KB5123099
Important ⚠️ Issues

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

[Security] Remote Desktop Services might stop responding after installing the September 2026 Windows security update. So...

Ver Todos os Resultados

Sobre o Sistema

Este sistema foi desenvolvido para auxiliar empresas no processo de aprovação e teste de atualizações do Windows (KBs - Knowledge Base). Ele automatiza a verificação de artigos do catálogo de atualizações da Microsoft para identificar possíveis problemas conhecidos associados a uma atualização específica.

Problemas conhecidos são frequentemente documentados em artigos da Microsoft, juntamente com soluções ou estratégias de mitigação de riscos para administradores de TI. Ao sinalizar rapidamente KBs com problemas conhecidos, o sistema capacita as equipes de TI a tomar decisões informadas, reduzindo riscos e tempo de inatividade.

Ajude a melhorar este sistema! Sua doação apoia a inovação e a segurança digital. Doe Agora

Serviços Disponíveis

Obter KBs Instalados no Seu PC

Como Obter KBs Instalados:

  1. Pressione Win + R para abrir a caixa "Executar".
  2. Digite cmd e pressione Enter para abrir o Prompt.
  3. No Prompt, digite o comando abaixo e pressione Enter:
  4. Isso exibirá os KBs (hotfixes) instalados no seu computador.
  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]