04-30-2015, 03:36 PM
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "ExportLod.exe";
startInfo.Arguments = " -h " + IP + " -d " + DB + " -u " + USER + " -p " + USERPW +
" -k " + version + " -l " + language + " -t " + lodfile;
Process.Start(startInfo);
just fill the ip, db, user, pw, version, language and the file and place the exporter i released in the same directory as the tool

