I’ve got a problem where the darn server pushed down invalid profile documents to the client and it’s not possible to delete the documents from the ($Policies) view in the local address book…What I did discover is when I ran nupdall names.ns -R on the client, the corrupted document (stubs?) finally disappeared and the policies are now in enforcement on the clients.
Since I cannot visit every PC in our domain to manually enter in the command at the DOS prompt (let alone the users)… I figured it would work programmically.
So right from the example in the designer client I tried…
Sub Initialize
Dim session As New NotesSession
consoleReturn$ = session.SendConsoleCommand( “”, “nupdall names.nsf -R”)
End Sub
and it fails because it can’t find server “”…
I’m trying to run agent that automatically urns the updall on the client side.
Running a script that loops thru doc entries in the ($policies) view works, but when It comes across these corrupted docs, the script errors out and exits…
So running nupdall in the only choice.
Can anyone help with how to do this on the local client?
Thank you.
Brett