IADsService Property: LoadOrderGroup

Property Name
LoadOrderGroup

Property Type
String

Description
Gets and sets the name of the load order group that the service is a member of.

Remarks
This property also accepts the empty string (""). If you specify an empty string, it means that the service does not have any load group.

Example

Dim serobj As IADsService
'get the service object
Set serobj = GetObject("NTDS://MSFT/MOON/Messenger")
'Get the service load order group
Debug.Print serobj.LoadOrderGroup
'set the service load order group
serobj.LoadOrderGroup = "TDI"
serobj.SetInfo

 

See Also