.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: CertificateAuthorityOrg property
This example submits a request to rename the Notes user John Good to John Goode. The organization name "\casco" that is supplied is specified in the same format used to display it in the list of CA configured certifiers. The available CAs display in a drop-down list in the Administrator client when you select Certify from the Configuration tab, then choose Use the CA Process from the Choose a Certifier dialog box.

Sub Initialize
 Dim session As New NotesSession
 Dim adminp As NotesAdministrationProcess
 Set adminp = _
 session.CreateAdministrationProcess("bay/casco")
 adminp.CertificateAuthorityOrg = "\casco"
 adminp.UseCertificateAuthority = True
 noteID$ = adminp.RenameNotesUser("CN=John Good/O=casco", _
 "Goode")
 Messagebox noteID$, , "Renaming request has been submitted"
 End Sub  

See Also