Is there a Script I can run in SCOM 2019 that will export all the sealed Management packs and the version # of it into an excel spreadsheet?

JCC 101 Reputation points
2023-01-27T12:19:05.7866667+00:00

I need to compile a list of all the sealed management packs in my SCOM 2019 environment along with the version # of the management packs into a CSV file. The reason is so that I can periodically check to see if newer versions of our sealed management packs are available online.

Operations Manager
Operations Manager
A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
1,409 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. XinGuo-MSFT 13,701 Reputation points
    2023-01-30T02:45:38.41+00:00

    Hi,

    Please try the following PowerShell script:

    
    Import-Module OperationsManager
    New-SCOMManagementGroupConnection scom2019.xxx.com
    Get-SCOMManagementPack | ?{$_.sealed -eq true} | export-csv -filename c:\temp.csv
    
    
    0 comments No comments