Posts

Showing posts with the label Active Directory

SharePoint Update UserInfo List From AD

namespace UpdateList {     class Program     {         static void Main( string [] args)         {             Program pp = new Program ();             pp.XFunInsert();         }         private void XFunInsert()         {             using ( SPSite oSite = new SPSite ( "http://localhost:650/sites/lms" ))             {                 using ( SPWeb oWeb = oSite.RootWeb)               ...