Hi everyone!
I found a little issue with a user list retreiving via VBScript code:
Set pUserAccounts = Vault.UserOperations.GetUserAccounts()
It does not show me users that were created during the time this script works. But the next time I run this script they are available. I suppose the "Vault" object contains, lets say, a "snapshot" of vault structure and newly added elements are unavailable there.
So I see a two possible way:
1) I have to use functions that have an ability to update data from server (for example, GetLatestObjVer has a parameter "updateFromServer")
2) I have to update a Vault object and get an actual information from there.
But I dont know how to do both of these points)
Could you advice me something?