I am using the RegisterNewUser method and I have noticed that the user do not get any shortname. How can I set a shortname/UserID for a new user via an agent?
/Annika
I am using the RegisterNewUser method and I have noticed that the user do not get any shortname. How can I set a shortname/UserID for a new user via an agent?
/Annika
Subject: RegisterNewUser and shortname/UserID
You should be able to set the short name using the short name method:
Dim reg As New NotesRegistration
…
reg.ShortName = “My Name”
…