Silent installation

前端 未结 3 967
执笔经年
执笔经年 2020-12-10 19:10

I am writing a InstallerClass using C# as a custom action for my installer, and I can successfully run an external exe (installation) using the

3条回答
  •  孤城傲影
    2020-12-10 19:14

    Have you tried using the /Q or /QB parameter that is listed in the Installation parameters? It might look something like this:

    p.StartInfo.Arguments = "/Q";

    I got that out of this document: http://msdn.microsoft.com/en-us/library/ms144259(v=sql.100).aspx

提交回复
热议问题