UsrMgr_EnumLocalGroups
Description
Enumerates local groups
Â
Syntax
UsrMgr_EnumLocalGroups()Â As Boolean
Â
Return value
Result will be stored in gaValue
Example
VBScript
If bStatus Then bStatus = UsrMgr_EnumLocalGroups() If bStatus And IsArray(gaValue) Then For index = LBound(gaValue) to UBound(gaValue) bStatus = Job_WriteLog("Custom", "Index #" & index & ": " & cStr(gaValue(index)), bStatus, True) Next End If
Â