Listing and exporting all SCOM overrides
The following example demonstrates how to list and export all the overrides for a specific management pack using PowerShell. The same example can be used to list overrides for any other management packs.
Assumptions
In the following example, we will list overrides for the FileMonitor.Guru.Test.MP
management pack. You can replace the value with your required management pack name:
$fileLocation = "C:\SCOM\MP\Overrides.txt" $mp = Get-SCOMManagementPack -DisplayName "File Monitor MP" $overrides = $mp.GetOverrides() $overrides | Out-File $fileLocation