Hi All,
I need to create a meaningful email alert for my System down, disk space, and some other alerting.
How can I query the Computer Description field?
from: Control Panel\System and Security\System

This information can be retrieved using:
#Registry
(Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters).SrvComment
#WMI
(Get-WmiObject -Class Win32_OperatingSystem).Description
However, I cannot retrieve it with Solarwinds:
- ${N=SwisEntity;M=DisplayName}
- ${N=SwisEntity;M=Caption}
- ${N=SwisEntity;M=SysName}
- ${N=SwisEntity;M=NodeDescription}
Thank you in advance.