KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

KB Processed

Clean
5002689
✅ No Issues

Description of the security update for PowerPoint 2016: June 10, 2025 (KB5002689) - Microsoft Support

No known issues found.

5002683
✅ No Issues

Description of the security update for Outlook 2016: June 10, 2025 (KB5002683) - Microsoft Support

No known issues found.

5002616
✅ No Issues

Description of the security update for Office 2016: June 10, 2025 (KB5002616) - Microsoft Support

No known issues found.

5053665
Not Found

Error - Office.com - Microsoft Support

No known issues found.

5055528
Important ⚠️ Issues 🤖 AI

April 8, 2025—KB5055528 (OS Builds 22621.5189 and 22631.5189) - Microsoft Support

[N/A] This update was released on April 8, 2025, for Windows OS builds 22621.5189 and 22631.5189. It includes various improvements and fixes for the W...


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]