Hi.
Can we push the location settings to all the users in an organization ?
For example:
I need to change the Mail server name and Domino Directory server name to a specified value for all the members in my group.
Can we do that via an agent?
Can we achieve by something like sending a button in the email by clicking which its all set ?
Thanks !
Sirisha.
Subject: Push location settings
Here is a script I found that you can paste into button. I think the client needs to be restarted
sub Click (source as button)
Dim db As New NotesDatabase(“”,“names.nsf”)
Dim view As NotesView
Dim doc As NotesDocument
newserver = " the fully cn name of the server"
Set view = db.GetView(“Locations”)
Set doc = view.GetDocumentByKey(“Office”)
Messagebox “Your client will be set to use the Old Server server.”,64,“Change required”
Call doc.ReplaceItemValue(“MailServer”,newserver)
Call doc.save(False,True)
Messagebox “Your Lotus Notes Client is now configured to use New Server as your Home Server.”,64,“Changes complete restart the client”
End Sub