Kaspersky Security Center Automation  10.0
HRESULT IKlAkGroups::GetGroupInfo ( [in] long  nGroupId,
[out, retval] IKlAkParams **  ppInfo 
)

Acquire administration group attributes.

Returns attributes of the specified administration group.

Parameters:
nGroupId Id of existing group
Return values:
ppInfo group attributes (List of group attributes for attribute names)


See JScript call sample below.

	...
	var oGroups = new ActiveXObject("klakaut.KlAkGroups");
	oGroups.AdmServer = ...
	...
	var lGroupId = ...
	...
	//Acquire group name
	var strName = oGroups.GetGroupInfo(lGroupId).Item("name");