//start the real updater
            System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo();
            psi.FileName = sPath;//Application.StartupPath + "\\tsApp.exe";
            psi.UseShellExecute = true;
            psi.WorkingDirectory = Application.StartupPath;
            psi.Arguments = sArguments;

            System.Diagnostics.Process.Start(psi);
posted on 2010-01-22 16:15  新郎  阅读(277)  评论(0编辑  收藏  举报