Archive for the ‘Microsoft Operations Manager’ Category
SCOM 2007 install error “Invalid Management Group name
delete
HKLM\Software\Microsoft\Microsoft Operations Manager
How to unseal a management packs in Operations Manager 2007 R2
This article will be about how to convert the MP format to XLS so we can work with it.
I found a script from a person named Boris Yanushpolskyhis blog post is here http://blogs.msdn.com/b/boris_yanushpolsky/archive/2007/08/16/unsealing-a-management-pack.aspx
Pretty much we need to run his script and import it into Operations manager.
Script is
param($mpFilePath,$outputDirectory)
$assembly = [System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.EnterpriseManagement.OperationsManager”)
$mp = new-object Microsoft.EnterpriseManagement.Configuration.ManagementPack($mpFilePath)
$mpWriter = new-object Microsoft.EnterpriseManagement.Configuration.IO.ManagementPackXmlWriter($outputDirectory)
$mpWriter.WriteManagementPack($mp)
Name the script MptoXml.ps1
Run this command:
powershell d:\MpToXml.ps1 -mpFilePath:’d:\Microsoft.Exchange.Server.2003.Monitoring.mp’ -outputDirectory:’d:\’