> |  
re... : Policy
mere
ndyncfg.exe non può essere manipolato in nessuna maniera.. che versione client hai??

prova a loggarti sulla postazione con un\'altra id (impostando anche la location) e verificare se a questo punto il client per quel id vengono recepite...

Verifica che per errore l\'utente non abbia assegnato un profilo R5 (profilo e policy vanno in conflitto)

ci sono delle funzioni di workaround in scala che si possono attuare che diventano più o meno invasive...

per esempio puoi provare questi due tips:

_____________________________________________
Eliminare il Profilo Policy nella names.nsf del client

Creare nel db names.nsf in locale questo script in un agente o in un bottone x cancellare solo il profilo policy del client notes.

Sub Initialize
\'--- Declare Class Variables
Dim s As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
\'--- Initialize Class Variables
Set db = s.currentdatabase
Set col = db.GetProfileDocCollection("$policyprofile")
\'--- Remove all the Policy Profiles
Call col.Removeall(True)
End Sub

Il policy profile può essere visualizato mediante notes Peak, ecco un esempio di cosa si vede prima della cancellazione del policy profile, ossia delle chiavi $policyprofile

_____________________________________________


Full policy Cleanup
Se Il problema con le policy persiste è possibile mediate lo script seguente rimuovere in un colpo sia la PolicyProfile che i documenti dalla vista $policy nella names.nsf locale del client notes:

Sub Initialize
\'--- Declare Class Variables
Dim s As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim collection As NotesViewEntryCollection
Dim entry As NotesViewEntry
\'--- Initialize Class Variables
Set db = s.GetDatabase("", "names")
Set view = db.GetView( "($Policies)" )
Set collection = view.AllEntries
Set entry = collection.GetFirstEntry()
Set col = db.GetProfileDocCollection("$policyprofile")
\'--- Process all documents in the ($Policies) view
While Not(entry Is Nothing)
Set doc = entry.Document
doc.Remove(True)
Set entry = collection.GetNextEntry(entry)
Wend
\'--- Remove all the Policy Profiles
Call col.Removeall(True)
End Sub


chiudere e riaprire il client notes x forzare scarico policy.




Policy - Lotus23 -
    re : Policy - mere -
        re... : Policy - Lotus23 -
            You are here re... : Policy - mere -
                re... : Policy - Lotus23 -