how to remove the preferred rooms that users have saved? How to reset them? I have renamed a room resource. Help…
Subject: End user can reset them
In the calendar preferences, under the Rooms&Resource tab, the user can select the Manage List button and remove the old name. I do not know of a way to do this centrally. The listings are stored in each user’s calendar profile.
Subject: Clean via script
I wrote this script to clean them up it is per mail file of course.
Sub Initialize
On Error Goto ErrorRoutine
Dim profile As NotesDocument
Dim db As NotesDatabase
Dim WS As New NotesUIWorkspace
Set db=ws.CurrentDatabase.Database
Set profile = db.GetProfileDocument("CalendarProfile")
If (profile.IsNewNote) Or (Len(profile.getitemvalue("Owner")(0)) = 0) Then Exit Sub
PROFILE.ReplaceItemValue "PrefRoomsList", ""
Exit Sub
ErrorRoutine:
Messagebox(Cstr(Err)+": "+Error+" wGetCalendarProfile")
End Sub