码迷,mamicode.com
首页 > Web开发 > 详细

.Net下 自动执行MSI和EXE文件

时间:2014-05-25 19:20:17      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   c   code   

MSI是安装文件,需要系统自带的msiexec.exe来执行

  var tempDir = @"D:\UploadFiles\SCADASetupWix.msi";
                var start = new ProcessStartInfo("msiexec.exe", "/i \"" + tempDir );
                start.WindowStyle = ProcessWindowStyle.Normal;
                start.CreateNoWindow = true;
                Process.Start(start);//.WaitForExit()

但在360下,会由警告弹出。认为自动安装是不安全的。 应该还有更好的方式。

在cmd中触发安装,也会弹出360警告。然后显示拒绝安装

bubuko.com,布布扣

自动运行EXE文件,也会弹出警告。

bubuko.com,布布扣
  Process prc = new Process();
            try
            {
                prc.StartInfo.FileName = @"C:\Users\Administrator\Desktop\SCADA\setupok.exe";
                prc.StartInfo.UseShellExecute = false;
                prc.StartInfo.RedirectStandardError = true;
                prc.StartInfo.RedirectStandardOutput = true;
                prc.StartInfo.RedirectStandardInput = true;
                prc.StartInfo.CreateNoWindow = false;
                prc.Start();
            }
            catch (Exception exU)
            {
                if (!prc.HasExited)
                {
                    prc.Close();
                }
                throw new Exception(exU.Message.ToString());
            }
bubuko.com,布布扣

应该有静默的安装方式。继续寻找!

 

 

 

 

.Net下 自动执行MSI和EXE文件,布布扣,bubuko.com

.Net下 自动执行MSI和EXE文件

标签:des   style   class   blog   c   code   

原文地址:http://www.cnblogs.com/stoneniqiu/p/3750537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!