[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Initializes a new instance of the ManagementPack class in memory. Namespace: Microsoft.EnterpriseManagement.Configuration
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim Name As String
Dim FriendlyName As String
Dim version As Version
Dim storeForReferences As IManagementPackStore

Dim instance As New ManagementPack(Name, FriendlyName, version, storeForReferences)

Syntax

Visual Basic
Public Sub New ( _
		Name As String, _
		FriendlyName As String, _
		version As Version, _
		storeForReferences As IManagementPackStore _
)
C#
public ManagementPack (
		string Name,
		string FriendlyName,
		Version version,
		IManagementPackStore storeForReferences
)
C++
public:
ManagementPack (
		String^ Name, 
		String^ FriendlyName, 
		Version^ version, 
		IManagementPackStore^ storeForReferences
)
J#
public ManagementPack (
		String Name, 
		String FriendlyName, 
		Version version, 
		IManagementPackStore storeForReferences
)
JScript
public function ManagementPack (
		Name : String, 
		FriendlyName : String, 
		version : Version, 
		storeForReferences : IManagementPackStore
)

Parameters

Name

The name of the management pack to create.

FriendlyName

The friendly name of the management pack to create. Cannot be null.

version

The version to use for the newly created management pack.

storeForReferences

The store to load references from. The store is usually represented by a ManagementPackFileStore object when working with management packs in the file system or an EnterpriseManagementGroup object when working with a SystemCenter-based installation.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also