Subject: Recreate the calendar profile
Since the preferences cannot be opened and with the errors that you’re encountering, it’s possible that your calendar profile got corrupted. Calendar profile contains all the user’s settings stored in the preferences, as well as the mail rules and blocked sender’s list.
You can use the Admin Tool to recreate the calendar profile or you can also use a Lotus script. However, please be reminded that deleting the Calendar Profile document also results in the loss of all user settings found in the Preferences since it will be restored to default, so you might want to take note of all the user’s preferences so that you could restore it easily. Also, make sure to disable the user’s mail rules before recreating the calendar profile.
Note: Make sure you are logged in as the user with the user’s id after deleting the calendar profile. If not, the mail file owner field will change to whoever deleted the calendar profile. If you’re not able to sign in as the user, make sure to check the Mail File Owner field under Preferences when done and correct if needed.
Admin Tool:
http://www-01.ibm.com/support/docview.wss?uid=swg21459332
Lotus Script:
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db=session.CurrentDatabase
Set doc=db.GetProfileDocument(“CalendarProfile”)
Call doc.remove(True)
If doc Is Nothing Then
MsgBox “Profile Document Was Successfully Removed”
Else
MsgBox “Profile Document WAS NOT Removed”,48
End if
You can also watch the video demonstration below using the Lotus Script above.
http://www-10.lotus.com/ldd/dominowiki.nsf/dx/Video_How_to_Recreate_a_Calendar_Profile
You can also check out the technote below for more information:
http://www-01.ibm.com/support/docview.wss?uid=swg21088892
Hope that helps!