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
ファイル: Program.cs プロジェクト: steeleprice/Zetetic.Ldap
 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
ファイル: Program.cs プロジェクト: skradel/Zetetic.Ldap
 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;
     }
 }