Reformat an LDIF exported from Active Directory, i.e., with ldifde, for re-importing by stripping out most of the stuff Active Directory won't accept via LDAP.
示例#1
0
 static void Main(string[] args)
 {
     try
     {
         AdsImportPrep p = new AdsImportPrep();
         p.IMain(args);
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine(ex.Message + " :: " + ex.StackTrace);
         System.Environment.ExitCode = 1;
     }
 }
示例#2
0
 static void Main(string[] args)
 {
     try
     {
         AdsImportPrep p = new AdsImportPrep();
         p.IMain(args);
     }
     catch (Exception ex)
     {
         Console.Error.WriteLine(ex.Message + " :: " + ex.StackTrace);
         System.Environment.ExitCode = 1;
     }
 }