KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

EN PT-BR ES

Latest Known Issues

Recent Windows updates with documented issues

KBKB5063877

August 12, 2025—KB5063877 (OS Build 17763.7678) - Microsoft Support

Security-related update detected

KBKB5063871

August 12, 2025—KB5063871 (OS Build 14393.8330) - Microsoft Support

Security-related update detected

KBKB5046613

November 12, 2024—KB5046613 (OS Builds 19044.5131 and 19045.5131) - Microsoft ...

Symptom Workaround ...

KBKB5056579

April 25, 2025-KB5056579 Cumulative Update for .NET Framework 3.5 and 4.8.1 for ...

Known issues found but description could not be extracted.

KBKB5043064

September 10, 2024—KB5043064 (OS Builds 19044.4894 and 19045.4894) - Microsoft...

CVE-2022-2601 CVE-2023-40547

KBKB5044273

October 8, 2024—KB5044273 (OS Builds 19044.5011 and 19045.5011) - Microsoft Su...

Symptom Workaround ...

KBKB5063709

August 12, 2025—KB5063709 (OS Builds 19044.6216 and 19045.6216) - Microsoft Su...

Security-related update detected

KBKB5062170

May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band - Micr...

Noto fonts issue ​​​​​​​​​​​​​​Applies to: All users Symptom There are reports of blurry or ...

KBKB5060999

June 10, 2025—KB5060999 (OS Builds 22621.5472 and 22631.5472) - Microsoft Supp...

Noto fonts issue Applies to: All users Symptoms There are reports of blurry or unclear CJK (Chinese, Japanese, Korean) t...

KBKB5060826

June 26, 2025—KB5060826 (OS Builds 22621.5549 and 22631.5549) Preview - Micros...

Noto fonts issue Applies to: All users Symptom There are reports of blurry or unclear CJK (Chinese, Japanese, Korean) te...

View All KB Results

About the System

This system was developed to assist companies in the approval and testing process of Windows updates (KBs - Knowledge Base). It automates the process of checking official Microsoft update catalog articles to identify potential known issues associated with specific updates.

Known issues are often documented in Microsoft articles, along with solutions or risk mitigation strategies for IT administrators. By quickly flagging KBs with known issues, the system empowers IT teams to make informed decisions, reducing risks and downtime during the update process.

Help improve this system! Your donation supports innovation and digital security. Donate Now

Available Services

Get Installed KBs on Your PC

How to Get Installed KBs:

  1. Press Win + R to open the "Run" dialog box.
  2. Type cmd and press Enter to open the Command Prompt.
  3. In the Command Prompt, type the following command and press Enter:
  4. This will display a list of installed KBs (hotfixes) on your computer.
  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]