xxx来源:http://t.zoukankan.com/TBW-Superhero-p-5570650.html
http://t.zoukankan.com/flywing-p-10570063.html
http://t.zoukankan.com/flywing-p-10570063.html
#region 安装程序
try
{
//D:\Demos\ConsoleApp1\ConsoleApp1\bin\Debug\netcoreapp3.1\
//Path.GetFullPath("../../..") = D:\Demos\ConsoleApp1\ConsoleApp1
string filePath = Path.Combine(Path.GetFullPath("../../.."), "files\\sogou_pinyin_130.exe");
Process p = new Process();
p.StartInfo.FileName = filePath;
//p.StartInfo.Arguments = $"/i {_temp}sogou_pinyin_130.exe /qb-!";
// /qb显示基本界面 /qb-!或者/qb!- 基本界面无取消按钮
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.WaitForExit();
p.Close();
}
catch (Exception ex)
{
Console.WriteLine("启动失败:" + ex.Message);
}
#endregion
浙公网安备 33010602011771号