Querying Antivirus info on a Windows Server OS?

Get-WmiObject -Namespace root\securitycenter2 -class antivirusproduct

That works on modern versions of client Windows and gets me good info, but that namespace doesn’t exist on server OSes. Does anyone know of any place in WMI or the registry where I can query similar information on a Windows server?

I know worse case scenario I can parse installed application descriptions for antivirus* but I was hoping I could get more fine tuned info.

The WMI namespace doesn’t exist on server computers. It’s client-only functionality.