Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Newsgroup Display Name Is Not Updated When You Run the Rgroup.vbs Script in Exchange 2000 Service Pack 3


View products that this article applies to.

Symptoms

When you use the Rgroup.vbs file to change the display name of newsgroups in Microsoft Exchange 2000 Server Service Pack 3, the display name is not updated.

↑ Back to the top


Cause

The Rgroup.vbs file contains a syntax error that prevents it from processing the name of the newsgroup correctly.

Note The Rgroup.vbs file is located in the C:\Winnt\System32\Inetserv folder.

↑ Back to the top


Resolution

To resolve this issue, modify the Rgroup.vbs file in Notepad. To do this, follow these steps:
  1. Click Start, point to Programs, point to Accessories, and then click Notepad.
  2. On the File menu, click Open.
  3. Locate the Rgroup.vbs file, and then click Open.
  4. Locate the following text that is on line 259:
    On Error Resume Next 
    g_admin.Get strNewsgroup 
    if ( Err.Number <> 0 ) then
  5. Replace the text that you located in step 4 with the following text:
    On Error Resume Next 
    g_admin.Get strNewsgroup 
    if ( Err.Number = 0 ) then
    Note The new text is Err.Number = 0, instead of Err.Number <> 0
  6. On the File menu, click Save.
  7. Run the Rgroup.vbs file to change the display name of the newsgroup in Exchange 2000.

↑ Back to the top


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

↑ Back to the top


Keywords: KB822885, kbprb

↑ Back to the top

Article Info
Article ID : 822885
Revision : 2
Created on : 10/27/2006
Published on : 10/27/2006
Exists online : False
Views : 263