软件静默安装

需求:多个Unity3d发布包,一键静默安装到指定目录。
ps:打包软件 - 静默参数
1.WinRAR (/s)
2.Inno Setup (/sp- /silent /norestart)
3.Install Shield with MSI ( /s /v" /qb)
4.Wise Installation Professional (/silent)

        ProcessStartInfo psi = new ProcessStartInfo(_path, "/sp- /silent /norestart");
        psi.CreateNoWindow = true;
        psi.WindowStyle = ProcessWindowStyle.Hidden;
        Process.Start(psi);

你可能感兴趣的:(ISpace)