KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

KB Processed

Clean
5060526
✅ No Issues

June 10, 2025— KB5060526 (OS Build 20348.3807) - Microsoft Support

Microsoft is not aware of any known issues with this update.

5060118
✅ No Issues

June 10, 2025—KB5060118 (OS Build 25398.1665) - Microsoft Support

Microsoft is not aware of any known issues with this update.

5002735
⚠️ Issues

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

Symptoms From outside Excel, if you try to open an Excel workbook whose file name contains square brackets ( [ ] ), you receive the ...

5002730
✅ No Issues

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

No known issues found.

5002710
✅ No Issues

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

No known issues found.


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]