I am trying to add a windows account in the laserfiche avante by using c# and after it assign as a read only users to let this user use weblink
TrusteeInfo TI = new TrusteeInfo(); TI.LfdsName = "myDomName\\rperrault"; TI.Session = RASession; TI.Save();
but got some error message.
how can I add windows account to laserfiche avante by using workflow.
I will also need to add it to a laserfiche group create using this code (working code)
Object myField = lfDoc.GetFieldValue("Agent Code"); try { GroupInfo GI = new GroupInfo(); GI.Name = myField.ToString(); GI.Session = RASession; GI.FeatureRights = FeatureRights.Scan | FeatureRights.Search | FeatureRights.Print | FeatureRights.Export; GI.Save(); } catch (Exception ex) { MsgBox("error in creation group, group already exist" + ex); }