需求:多个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);
版权声明:本文为itsxwz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。