Link to home
Start Free TrialLog in
Avatar of fhios
fhios

asked on

AutoIT & Lotusscript

Hi All

I am trying to register a Lotus Notes user from an AutoIt script using the COM object, so far I have achived little success.  The AutoIT script enclosed will go through the registration process and create the users ID file but will not add any entry to the Address book as you would expect.
I have tested the same script using VBScript and this works perfectly well from the command line but I would prefer to only use lotus script and not to shell out from AutoIT.

Please see the code enclosed, any help would be greatly appreciated as I am pulling my hair out at this stage

<AutoIT>

$Session = ObjCreate("Lotus.NotesSession")

if not IsObj($Session) then
    Msgbox(0,"Status","Couldn't attach to Lotus.")
else
    Msgbox(0,"Status","Attached to Lotus.")
endif
$Session.Initialize()

$Reg = $Session.CreateRegistration()
$Reg.RegistrationServer = "serverA"
$Reg.CertifierIDFile = "c:\cert.id"
$Reg.Mailinternetaddress = "Roger.Whooly@company.com"
$Reg.IDType =172
;$Reg.OrgUnit = "Unit"
$Reg.Expiration = 01/01/2099
$Reg.MinPasswordLength = 6
$Reg.RegistrationLog = "log.nsf"
$Reg.CreateMailDb = True
$Reg.IsNorthAmerican = True
$Reg.UpdateAddressBook = True
$Reg.StoreIDInAddressBook = True
$Reg.CreateMailDB = True
$User=$Reg.RegisterNewUser("Whooly", "c:\user2.id", "CN=serverA/O=Unit","Roger","","cert_password","","","mail\rwhooly.nsf","", "user_password",175)


Exit


<VBScript>

Dim FirstName, FamilyName, Email, Expiry, MailDB

If Wscript.Arguments.Count = 2 Then
    FirstName = Wscript.Arguments(0)
      FamilyName = Wscript.Arguments(1)
      Email = Firstname & "." & FamilyName & "@company.com"
      Expiry = DateAdd("yyyy",1,Date)
      MailDB = LCase("mail\" & Left(FirstName,1) & Familyname & ".nsf")
      
Else
      MsgBox("Users full name missing.....Exiting!")
      Wscript.Quit
End If

Set objLN = CreateObject( "Lotus.NotesSession" )
objLN.Initialize()
Set reg = objLN.CreateRegistration
reg.RegistrationServer = "serverA"
reg.CertifierIDFile = "c:\cert.id"
reg.MailInternetAddress = Email
reg.IDType = 172
reg.CreateMailDb = True
reg.UpdateAddressBook = True
reg.Expiration = Expiry
reg.MinPasswordLength = 6
reg.IsNorthAmerican = True
reg.StoreIDInAddressbook = False
reg.RegisterNewUser FamilyName,"c:\user.id","CN=serverA/O=Unit",FirstName, "",      "cert_password", "", "", MailDB, "", "user_password",175

Many thanks for you time.
TomC
ASKER CERTIFIED SOLUTION
Avatar of Steve Knight
Steve Knight
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
What I don't see, is how you identify yourself.  By that I mean that the script needs to run as a user with permission to add a new user.
You can check this by adding something like

Print $Session.EffectiveUserName
or
Print ObjLN.EffectiveUserName

You then need to check in the Notes/Domino environment if the name printed has appropiate access. The Administrator Help topic Customizing user registration lists the required permissions:
Access to the certifier ID and its password, if you are not using a certifier enabled for the CA process.
Editor access or Author access with Create Document role and the UserCreator privilege in the Domino Directory. UserCreator role is required regardless of your access level.
Access to the Domino Directory from the computer you work on. Local or remote access to USERREG.NSF.
Create new databases access on the mail server to create user mail files during registration.
Create document access to CERTLOG.NSF on the registration server.
GroupModifier role or at least Editor access to add users to groups.

Please make sure the ID associated with the printed name has these rights.
Avatar of fhios
fhios

ASKER

Many thanks Steve, couldnt see the wood for the trees.

Regards
So was that it then that worked, the difference between -1 and 1 representations of "true"?

I did start to have a look earlier but hadn't had a chance to try from autoit.

Steve
Avatar of fhios

ASKER

Yup that was it changed true to 1 and bingo all the values took.  I hadnt thought of changing this value as syntactically it was accepted by Autoit and VBS also used it, again thanks.

Regards
No problem, would you mind then if I asked the mods to amend the grade... don't like "b" grades!
Steve, I'd never have guessed it could be True...  ;-))