Hi,
For this request, we could try the following
1, create a group
2, add the specific servers to the group
3, create a folder, for example, c:\temp (if exists, ignore)
4, run the below command to export the effective configuration (rules and monitors), each file for a single server
$Members = (Get-SCOMGroup -DisplayName "All Windows Computers").GetRelatedMonitoringObjects()
$Members | ForEach-Object { Export-SCOMEffectiveMonitoringConfiguration -Instance $_ -Path "C:\temp\$($_.DisplayName).csv" -RecurseContainedObjects }
5, open the .csv file with Excel, click data menu, text to columns, use "|" as the delimiter.
Below is an example for your reference.
Regards,
Alex