Export-SCOMOverrides
Available here: SCOMHelper PowerShell Module
Export all overrides in mgmt group.
Example Reports Here
More examples:
Examples
-------------------------- EXAMPLE 1 --------------------------
PS C:\>Export-SCOMOverrides -OutDir C:\Reports -ExportFormats HTML -FilterMPNames 'URLGenie.OVERRIDES,OpsMgr.Self.Maintenance.Overrides','PortGenie.OVERRIDES','WindowsService.OVERRIDES' -Verbose
This example demonstrates that you can supply a comma-separated list of MP Names or an array of MP names or both. The report(s) will only include overrides that exist in these MPs.
-------------------------- EXAMPLE 2 --------------------------
PS C:\>Export-SCOMOverrides -SortBy ORMPName -SortOrder Ascending -DateStampFile:$false -Verbose
-------------------------- EXAMPLE 3 --------------------------
This is an example of providing custom CSS formatting to the HTML report.
PS C:\> [string]$CSS = @'
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
td {
text-align: center;
}
</style>
'@
PS C:\> Export-SCOMOverrides -SortBy ORMPName -ExportFormats HTML -CSS $CSS -OutDir "C:\Reports"
One Reply on “SCOM Export-SCOMOverrides Report”