Backing up unsealed management packs
As SCOM administrators, we need to take backups of the unsealed management packs on a daily basis as part of the SCOM maintenance activities. We can use the TechNet link https://technet.microsoft.com/en-in/library/hh212794.aspx to get detailed information of the management pack, its parts, and types.
The following code demonstrates how to take a backup of all the unsealed management packs that use PowerShell:
$AllMPs = Get-SCOMManagementPack $UnsealedMPs = $AllMPs | where {$_.Sealed -eq $false} # Now $UnseledMPs contains all unsealed MPs. Next is to export the contents of $UnSeledMPs $UnseledMPsExport-SCOMmanagementpack -path C:\MPBackups