Hi All, I am creating a user through notesregistration class.
Its Working well and mail box created.
Now how I will change the USER’S password through lotus Script.
Please guide me.
Hi All, I am creating a user through notesregistration class.
Its Working well and mail box created.
Now how I will change the USER’S password through lotus Script.
Please guide me.
Subject: How To Change The Password
hello pawan
try this code :::
Dim session As NotesSession
Dim adminp As NotesAdministrationProcess
Set adminp = _
session.CreateAdministrationProcess(“MyServer/northeast”)
noteID$ = adminp(ChangeHTTPPassword(“CN=Juan Carlos/O=northeast”, _
“bueno”, “malo”)
If noteID$ <> “” Then
Dim db As New NotesDatabas(MyServer/northeast", "admin4.nsf")
Dim ws As New NotesUIWorkspace
Call ws.EditDocument(False, db.GetDocumentByID(noteID$))
End If
Regards
Sanjay