Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating database links in Desktop.dsk Notes 4.5.7g 1

Status
Not open for further replies.

jhem99

IS-IT--Management
Jul 24, 2003
1
AU
We are moving 400 users from one Notes server to anotherneed to update every database link on each user's "desktop.dsk" file.
Can this be achieved with a script instead of manually having to do it?
 
Hello,

You could add some Lotus script (see below) to a button and send it to your users before the change (action button before leaving for the day). This would change the users current location document to point o the new server (need to modify xxx entries).

You can also take it one step further and script a button that builds a new location document with the new settings. Not sure how this will rok in R4, it's been years since I touched it.

Sub Click(Source As Button)
Dim session As New NotesSession
Call session.SetEnvironmentVar( "MailServer",
"CN=xxx/OU=xxx/OU=xxx/O=xxx" )
End Sub

Rgds,

John
 
You might want to check out they've got a tool called DMT that does that.

It updates the user's location document(s), adds connection documents for the new server, if necessary, and updates all database icons to point to the new server.



Woonjas
IRC: #notes on EFNet
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top