Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Console.WriteLine("******* Starting PST **********");
     PSTLoader pstLoader = new PSTLoader();
     Console.WriteLine("******* Loaded PST information into DB! Press any key to exit. *********");
     Console.ReadKey();
 }
Exemplo n.º 2
0
 private void ProcessPST(string fileName)
 {
     PSTLoader pstLoader = new PSTLoader();
     pstLoader.PSTFilePath = fileName;
     pstLoader.ParseMailBoxFolders();
 }