System.Diagnostics.Process wsusou = new Process();
wsusou.StartInfo.FileName = "cmd.exe";
wsusou.StartInfo.Arguments = @"/k C:\Users\me\Desktop\trunk-r664\trunk\ExtractDownloadLinks-all.cmd"; // replace "/k" with "/c", if cmd should auto-close
wsusou.StartInfo.WorkingDirectory = @"C:\Users\me\Desktop\trunk-r664\trunk";
wsusou.Start();
while (wsusou.HasExited ==false) {
System.Threading.Thread.Sleep(100);
}
wsusou.Dispose();
Return to Installation / Updating
Users browsing this forum: No registered users and 33 guests