Error Message: User Created in DS, but AddUserToGroup : SetInfo on Group Memberof Object Failed (242354)



The information in this article applies to:

  • Microsoft Site Server 3.0 Commerce Edition

This article was previously published under Q242354

SYMPTOMS

When you update the registration information in the Trey Research sample site, the following error message is displayed:
Error Encountered:
User created in DS, but AddUserToGroup : SetInfo on group memberof object failed
Error number : 80071392
Error description :

CAUSE

Active Directory Service Interfaces (ADSI) 2.5 is installed.

NOTE: ADSI 2.5 is included with Windows 2000 and is installed as a separate component on Windows NT 4.0.

RESOLUTION

To resolve this problem, perform the following steps:
  1. In the C:\Microsoft Site Server\Bin\P&M\html folder, open the Dtclib.inc file in an editor.
  2. Near the top of the file, add the following line to the list of Localized Strings:
    Const cAlreadyExists2 = "80071392"
    						
  3. Modify the following line (#572) from:
    if cstr(HEX(Err)) <> cAlreadyExists Then
    						
    to:
    if cstr(HEX(Err)) <> cAlreadyExists AND cstr(HEX(Err)) <> cAlreadyExists2 Then
    						

MORE INFORMATION

Steps to Reproduce Behavior

  1. Open the Trey Research sample site (http://ServerName:5293/tr/) and register as a new user or log in as an old one.
  2. Click the Lobby button, and then click Update your registration information.
  3. Make changes and then click the Submit button.

Modification Type:MinorLast Reviewed:7/13/2004
Keywords:kbprb KB242354