Trouble Approving WSUS Upgrade for Windows 11

0
22
Asked By TechWizard44 On

I'm trying to roll out the Windows 11 25H2 update to workstations in my organization, but when I attempt to approve it for a test group in WSUS, I get an error that says, "Unable to display the Microsoft Software License Terms for this update; the update will not be approved." Does anyone know what might be causing this? My WSUS is running on a Server 2016, and we haven't had issues deploying monthly updates for the last two years.

5 Answers

Answered By SonicBoom99 On

It sounds like you might have a corrupted WSUS database. You might want to try running 'wsusutil reset'—it surprisingly fixes this issue in many cases. It's generally safe, but make sure you back up your database just in case. Also, just a heads-up, WSUS is on borrowed time. Have you thought about that?

Answered By GadgetGuru87 On

Here's a PowerShell script that might help you: First, set your WSUS server info and then use the 'AcceptLicenseAgreement()' method for any updates that require agreement. Just make sure to fill in your FQDN:
```powershell
[String]$WSUSServer = ""
[Boolean]$WsusUseSSL = $True
[Int32]$WsusPortNumberSSL = 8531

[void][reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration")
$wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer($WsusServer, $WsusUseSSL, $WsusPortNumberSSL)

$updates = $wsus.SearchUpdates("Windows 11, Version 25H2") | Where {$_.RequiresLicenseAgreementAcceptance}

$updates | ForEach {$_.AcceptLicenseAgreement()}
```

Answered By CloudSurfer123 On

Make sure your WSUS is on a supported OS. It's sensitive to that sort of thing. Ideally, you should consider upgrading to Windows Server 2025 or at least 2022. Plus, following best practices for installation and maintenance is crucial. If problems persist, it might be wise to look into alternatives like Intune or other patch management solutions.

Answered By NetworkNinja42 On

Honestly, you should look for something new. WSUS has been deprecated for over a year now.

Answered By AdminMaster55 On

That's true, but just remember that the deprecation mainly refers to new features and product updates. WSUS is still going to distribute updates for the foreseeable future, so it still has some life left. Just keep an eye out for a good replacement as you move forward.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.