Ein Möglichkeit ist den Nutzer ein Button zu senden wo ein Script alle Arbeitsumgebungen gelöscht werden aus deine Gewühnschten.
Hier ist ein Beipiel wo in allen Arbeitsumgebungen die Sommerzeit auf nicht berücksichtigen setzte:
Sub Click(Source As Button)
Dim w As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
'Compose connection doc using the following syntax
'Set notesUIDocument = notesUIWorkspace.ComposeDocument( [ server$ [, file
$ [, form$ [, windowWidth# [, windowHeight# ]]]]] )
Set uidoc=w.ComposeDocument("","names.nsf","Connection")
'Set fields using the following syntax:
'Call notesUIDocument.FieldSetText( fieldName$, textValue$ )
Call uidoc.FieldSetText("ConnectionType","Local Area Network")
Call uidoc.FieldSetText("Destination","TestServer/Test")
Call uidoc.FieldSetText("LanPortName","TCPIP")
Call uidoc.FieldSetText("Source","kearns2/kearns")
Call uidoc.FieldSetText("OptionalNetworkAddress","9.166.139.6")
Call uidoc.save
Call uidoc.close
End Sub
Viele Grüße
Christopher