Probier mal ein Agent zu erstellen, Manuell aus dem Menü der Agenten, und gelten soll er für die Ausgewählten Documente.
Hier die das Script...
Sub Initialize
Dim session As New NotesSession
Dim QuellDB As NotesDatabase
Dim ZielDB As NotesDatabase
Dim doc As NotesDocument
Dim tmpdoc As NotesDocument
Dim newdoc As NotesDocument
Dim coll As NotesDocumentCollection
Set QuellDB = session.CurrentDatabase
Set ZielDB = session.GetDatabase("Server","DbFile")
Set coll = QuellDB.UnprocessedDocuments
Set doc = coll.GetFirstDocument
Do While Not doc Is Nothing
Set tmpdoc = coll.GetNextDocument(doc)
Set newdoc = doc.CopyToDatabase(ZielDB)
Call newdoc.PutInFolder("FolderName",True)
'Wenn du nur kopieren (nicht verschieben) möchtest, muß folgende Zeile auskommentiert sein...
Call doc.Remove(True)
Set doc = tmpdoc
Loop
End Sub
Sollte eigentlich funktionieren.
-rar