Bei Einsatz eines WSUS mit den Betriebssystemen Windows 10 oder Windows Server 2016 / 2019 kann der Error 0x8024401c angezeigt werden. Ursache sind die Werte „Warteschlangenlänge“ und „Limit für den privaten Speicher“ des IIS Anwendungspools WsusPool.
Mit einer administrativen PowerShell können die vorhandenen IIS AppPools angezeigt werden:
Get-IISAppPool
Mit einer administrativen PowerShell werden die Werte des WsusPool angepasst:
Import-Module WebAdministration
Set-ItemProperty -Path IIS:\AppPools\WSUSPool -Name queueLength -Value 25000
Set-ItemProperty -Path IIS:\AppPools\WsusPool -Name Recycling.periodicRestart.privateMemory -Value 0
Mit einer administrativen PowerShell muss ein iisreset durchgeführt werden:
iisreset.exe
Quellen:
- https://docs.microsoft.com/en-us/iis/manage/powershell/powershell-snap-in-navigating-the-iis-snap-in-namespace
- https://docs.microsoft.com/en-us/iis/configuration/system.applicationhost/applicationpools/add/recycling
- https://docs.microsoft.com/en-us/powershell/module/iisadministration/get-iisapppool
Photo by Markus Spiske on Unsplash, Icon by icons8