Export a Sealed MP
A sealed MP can be exported to an XML file using Command Shell.
Find the correct name of the MP you want to export using:
get-managementpack | where {$_.Name -like "*Server.2003"}
Export using:
get-managementpack | where {$_.Name -eq "Microsoft.Windows.Server.2003"} | export-managementpack -path C:\MP
No comments:
Post a Comment