A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
Hi Doug,
I would start by looking at this as an IIS / web tier issue first, especially if the upgrade completed successfully and only some views in the Web Console now return 500 Internal Server Error.
A few generic checks I would do:
- Check the IIS logs for the exact failing
/OperationsManagerrequest and note the HTTP substatus. A plain 500 is too generic.
Enable Failed Request Tracing (FREB) for status 500 so you can see where the request is failing in the IIS pipeline.
Then I would verify the basic IIS pieces:
Make sure the OperationsManager site / application is started.
Recycle the related application pool.
Check Application, System, WAS, W3SVC-WP, and .NET Runtime events around the failure time. IIS app pool recycle and worker-process issues can easily surface as 500 errors after an upgrade.
For SCOM specifically, I would also re-check the IIS prerequisites after the upgrade:
Confirm ASP.NET v4.8 is present and allowed under ISAPI and CGI Restrictions. Microsoft still calls that out for SCOM 2022 and later Web Console deployments.
Authentication is another area worth checking:
Review the IIS authentication settings for the Web Console.
If the issue only happens remotely or only with Windows Authentication, I would validate SPNs, delegation, and whether kernel-mode authentication or account settings changed during/after the upgrade.
Also worth checking:
Compare the current web.config with any pre-upgrade customizations.
If there were old manual tweaks in the Web Console config, the upgrade may have exposed them or left something inconsistent. A repair can also reset manual changes, so keep that in mind before making further edits.
My first pass would be:
Recycle the Web Console app pool
Check IIS logs for the exact failing request
Enable FREB for 500
Verify ASP.NET 4.8 / ISAPI restriction settings
Review authentication / SPN / delegation only if the pattern points there
That usually narrows it down fairly quickly.
Best Regards
Stoyan Chalakov
"If my response was useful, please consider marking it as the answer. It keeps the forum clean, structured, and more helpful for everyone. Thank you for supporting the community."