Last Accessed

Greetings All,

Do you know a good domino analysis tool available in the market or may be a freeware?

In my environment we create lot of accounts everyday and many of them are either seldom used or never used. I need to do a cleaup but must know before I started to remove the account if they are truly active or not.

Thanks for your help in advance.

Subject: Last Accessed

Hi,I think you can’t get ‘last accessed’ but only ‘get modified’.

As an example, you can do this in a agent:

Dim dbdir As New NotesDbDirectory(“TheNameOfYourNotesServerHere”)

Dim db As NotesDatabase

Set db = dbdir.GetFirstDatabase(DATABASE)

While Not (db Is Nothing)

Call db.Open( “”, “” )

If db.IsOpen Then

Msgbox db.Title & " "& db.LastModified, , db.FilePath

End If

'--------

resp%=Msgbox(“Continue?”,260,“Test”)

If resp%=7 Then End

'--------

Set db=dbdir.GetNextDatabase

Wend

The db.LastModified method can be your answer.

Regards