MSFT_MPFTranLogGroup


WMI class that represents transaction log groups of Microsoft® Provisioning Framework (MPF) in the configuration database. Used by Configuration Database WMI Provider.

Syntax

class MSFT_MPFTranLogGroup
{
	[key]
	string LogGroupName;

	string Description;
	string AuditServer;
	string AuditDB;

	uint32 maps_SetLogGroupProperty(
		[in, ID(0), fromPath] string LogGroup, 
		[in, ID(1)] string Owner,
		[in, ID(2)] string Name,
		[in, ID(3)] string Value);
};

Table
TranLogGroup

Properties

LogGroupName *
A string that identifies the log group.
Description
A string that describes the log group.
AuditServer
A string that identifies the audit server for the log group.
AuditDB
A string that identifies the audit database for the log group.
 
* Key property

Methods

Method Description
maps_SetLogGroupProperty Stored procedure that sets a log group property. This procedure can also be used to create and update property definitions (for class MSFT_MPFPropDefinition) and log group property instances (for class MSFT_MPFLogGroupProp).

Parameters

  • LogGroup [in, ID(0), fromPath]: A string that stores the name of the log group to use. If null, the provider will use the name of the current log group instance used to make the method call.
  • Name [in, ID(2)]: A string that stores the name of the property. This is the same name found in MSFT_MPFPropDefinition instances.
  • Owner [in, ID(1)]: A string that stores the owner of the property. This is the same owner found in MSFT_MPFPropDefinition instances.
  • Value [in, ID(3)]: A string that stores the value of the property. This is the same name found in MSFT_MPFLogGroupProp instances.

See also

MSDN® information on Windows Management Instrumentation (WMI)


Up Top of Page
© 1999-2002 Microsoft Corporation. All rights reserved.