KBApS - Knowledge Base Approval System

Your reliable tool for approving and testing Windows updates.

KB Processed

Clean
5060996
✅ No Issues

KB5060996: Cumulative security update for Internet Explorer: June 10, 2025 - Microsoft Support

No known issues found.

5060954
✅ No Issues

KB5060954: Servicing stack update for Windows 10, version 1607 and Windows Server 2016: June 10, 2025 - Microsoft Support

No known issues found.

5060842
⚠️ Issues

June 10, 2025—KB5060842 (OS Build 26100.4349) - Microsoft Support

5060533
✅ No Issues

June 10, 2025—KB5060533 (OS Builds 19044.5965 and 19045.5965) - Microsoft Support

No known issues found.

5060531
✅ No Issues

June 10, 2025—KB5060531 (OS Build 17763.7434) - 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]