KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

KB Processed

Clean
KB5043064
Important ⚠️ Issues 🤖 AI

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

CVE-2022-2601 CVE-2023-40547

KB5044273
Important ⚠️ Issues 🤖 AI

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

[N/A] This update may cause a black screen issue when logging into Azure Virtual Desktop (AVD). Users may also be unable to log out, and the black scr...

KB5063709
Important ⚠️ Issues 🤖 AI

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

Security-related update detected

KB5062170
Important ⚠️ Issues 🤖 AI

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

[Out-of-band] This update addresses an issue with Noto fonts, which were introduced in the March 2025 Preview Update for CJK languages. Users reported...

KB5060999
Important ⚠️ Issues 🤖 AI

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

[N/A] This update addresses an issue with blurry or unclear CJK text in Chromium-based browsers when displayed at 96 DPI. The problem arose after the ...


Get Installed KBs on Your PC

PowerShell — Simple Examples

1. Get All Installed KBs

# List all installed KBs
Get-HotFix | Select-Object HotFixID, Description

2. Get Only KB Numbers

# Get only KB numbers
$kbs = Get-HotFix | ForEach-Object { $_.HotFixID }
$allkbs = $kbs -join ","

3. Check All KBs via API

# Simple API call example (without auth)
$kb = "$allkbs"
$apiUrl = "://localhost/api/kb/api.php"

$body = @{ kb_list = $kb } | ConvertTo-Json
$response = Invoke-RestMethod -Uri $apiUrl -Method POST -Body $body -ContentType 'application/json'
Write-Host $response.message

How to Run:

  1. Open PowerShell
  2. Copy and paste any script above
  3. Press Enter

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