is there a way to export and save as text file from domino domain information about users i.e. all user names, last time login, group access, id expiration, ect ?same why you can run .vbs against DC in active directory
tia
is there a way to export and save as text file from domino domain information about users i.e. all user names, last time login, group access, id expiration, ect ?same why you can run .vbs against DC in active directory
tia
Subject: users audit
Most of the information you ask for can be extracted from the Domino Directory by creating a custom view and performing an export. Some info is version dependent though.
all user names - any version - column formula: @Subset(Fullname;1)
last time login - ND6+ servers and clients only - column formula: ClntDate
group access - not sure about this one
id expiration - any version OK - column formula: @Certificate([EXPIRATION]; Certificate)
You’ll need to put the columns into a private view in the Domino Directory and the private view’s selection formula should be SELECT Form = “Person”
Once the view’s working OK use “File/Export” to export the results.
HTH!